Compare commits

..

No commits in common. "93d580a2992fc94995d595d119b56b085f7e5e9a" and "70f0125d136aa187672fc6e83dfe01140c174c69" have entirely different histories.

14
run.bat
View File

@ -1,15 +1,5 @@
:: Uso: [set EXEC="caminho/do/executavel.exe"] && [set TEST_FOLDER="caminho/dos/casetests"] && run.bat
@ECHO off @ECHO off
if not defined EXEC ( for %%g in (test/*) do (
set EXEC="build/solucao.exe" "build/solucao.exe" < test/%%g
)
if not defined TEST_FOLDER (
set TEST_FOLDER=test
)
for %%g in (%TEST_FOLDER%/*) do (
echo Arquivo de teste: %TEST_FOLDER%/%%g
%EXEC% < %TEST_FOLDER%/%%g
) )