2016-09-09 1 views

Antwort

0

Parsen Sie seine Leckberichte.

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'] 
) 
) 
Verwandte Themen