You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
724 B
Batchfile
48 lines
724 B
Batchfile
@echo off
|
|
@set PATH=..\..\x64\Debug\;%PATH%
|
|
echo Test Case: 1
|
|
time<enter
|
|
"network.exe" <"network1.in" >"_tmpout"
|
|
time<enter
|
|
fc "_tmpout" "network1.out" /W
|
|
pause
|
|
del _tmpout
|
|
echo.
|
|
|
|
echo Test Case: 2
|
|
time<enter
|
|
"network.exe" <"network2.in" >"_tmpout"
|
|
time<enter
|
|
fc "_tmpout" "network2.out" /W
|
|
pause
|
|
del _tmpout
|
|
echo.
|
|
|
|
echo Test Case: 3
|
|
time<enter
|
|
"network.exe" <"network3.in" >"_tmpout"
|
|
time<enter
|
|
fc "_tmpout" "network3.out" /W
|
|
pause
|
|
del _tmpout
|
|
echo.
|
|
|
|
echo Test Case: 4
|
|
time<enter
|
|
"network.exe" <"network4.in" >"_tmpout"
|
|
time<enter
|
|
fc "_tmpout" "network4.out" /W
|
|
pause
|
|
del _tmpout
|
|
echo.
|
|
|
|
echo Test Case: 5
|
|
time<enter
|
|
"network.exe" <"network5.in" >"_tmpout"
|
|
time<enter
|
|
fc "_tmpout" "network5.out" /W
|
|
pause
|
|
del _tmpout
|
|
echo.
|
|
|