forked from github/server
1a9dd531c5
add a runtests.bat file for windows developers. make some tests clean up after themselves (os.remove on files they create).
9 lines
239 B
Batchfile
9 lines
239 B
Batchfile
@ECHO OFF
|
|
SET BUILD=..\build-vs12\eressea\Debug\
|
|
SET SERVER=%BUILD%\eressea.exe
|
|
%BUILD%\test_eressea.exe
|
|
%SERVER% ..\scripts\run-tests.lua
|
|
%SERVER% ..\scripts\run-tests-e2.lua
|
|
%SERVER% ..\scripts\run-tests-e3.lua
|
|
PAUSE
|
|
RMDIR /s /q reports
|