2016-09-09 2 views

答えて

0

リークレポートを解析します。

FOR /f "tokens=*" %%F IN ('dir /B *_memLeak.txt') DO (
    findstr "/C:No memory leaks detected." "%%F" 
    if ERRORLEVEL 1 (
     echo ##teamcity[buildProblem description='Leaks in %%~nxF'] 
) 
) 
関連する問題