testmsgr.bat

来自「开放源码的编译器open watcom 1.6.0版的源代码」· Batch 代码 · 共 22 行

BAT
22
字号
@fastdel testout >nul
@md testout >nul
@copy testmsg.mdl testout >nul
@copy testmsgf.bat testout >nul
@..\bin\msgstrm ..\gml\messages.gml testout\testmsg.mdl /b=%1 /e=%2 /d=testout
@call testbeg.bat
@del testout\error.ref >nul
@call testout\testmsg.bat
@if exist testin\error.ref goto DODIFF
    @echo **** No ERROR.REF in TESTIN directory
    @goto DONE
:DODIFF
@diff -b testin\error.ref testout\error.ref >testout\diagnose.out
@if errorlevel 1 goto DIFFS
    @echo *** NO DIFFERENCES ***
    @goto DONE
:DIFFS
    @echo *** DIFFERENCES DETECTED ***
    type testout\diagnose.out
    @echo *** DIFFERENCES DETECTED ***
:DONE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?