1

Can I integrate Visual Leak Detector with TeamCity? If yes, how?

4

1 回答 1

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']
  )
)
于 2017-08-17T15:38:53.837 回答