Minor Updates to Test Script

This commit is contained in:
Aaron Helton
2019-10-23 21:37:47 -04:00
parent 94f377d17b
commit bf2f0c8b4c

View File

@@ -1,4 +1,8 @@
echo off
NameSort.exe "Sort Me.txt" > Output.txt
fc Output.txt Sorted.txt
SET OUTPUT="output.txt"
if exist %OUTPUT% del /f %output%
NameSort.exe "Sort Me.txt" > %OUTPUT%
fc %OUTPUT% Sorted.txt
if %errorlevel% EQU 0 (echo "Success") else ( echo "Failure")