tools: run-tests: leak-test: add output

This commit is contained in:
Bill Zissimopoulos 2016-11-02 21:00:08 -07:00
parent 8c8d669be8
commit 453f1732dc

View File

@ -268,7 +268,9 @@ for /F "tokens=1,2 delims=:" %%i in ('verifier /query ^| findstr ^
)
)
set /A TotalAlloc=PagedAlloc+NonPagedAlloc
if !TotalAlloc! neq 0 (
if !TotalAlloc! equ 0 (
echo Leaks: None
) else (
echo Leaks: !NonPagedAlloc! NP / !PagedAlloc! P
goto fail
)