如何将Visual Leak Detector与TeamCity集成?

时间:2016-09-09 11:12:19

标签: visual-c++ teamcity visual-leak-detector

我可以将Visual Leak Detector与TeamCity集成吗?如果是,怎么样?

1 个答案:

答案 0 :(得分: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']
  )
)