diff options
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/tools/tooltest.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/windows/tools/tooltest.bat b/windows/tools/tooltest.bat index ed6a4d7..827f9df 100755 --- a/windows/tools/tooltest.bat +++ b/windows/tools/tooltest.bat @@ -281,7 +281,8 @@ ::Echo tests results
::-------------------
fc %exp_file% %actual_output% > ..\..\temp_fc.txt
- if %ERRORLEVEL%==0 (
+ type ..\..\temp_fc.txt | find "FC: no dif" > nul
+ if not errorlevel 1 (
set result=PASSED
) else (
set result=FAILED
|