OSDN Git Service

Initial commit
[wordring-tm/wordring-tm.git] / third_party / tidy-html5-master / test / alltest.cmd
1 @setlocal
2
3 @REM alltest.cmd - execute all test cases
4 @REM
5 @REM (c) 1998-2014 (W3C) MIT, ERCIM, Keio University
6 @REM See include/tidy.h for the copyright notice.
7 @REM
8 @REM <URL:http://www.html-tidy.org/>
9 @REM
10
11 @REM ########################################################
12 @REM ### *** SET LOCATION OF TIDY EXE TO USE FOR TEST *** ###
13 @REM ###           (for MS compiler users)                ###
14 @REM ########################################################
15 @REM call alltest1 ..\build\msvc\Release\tidy.exe .\tmp
16 @REM call alltest1 ..\bin\tidy.exe .\tmp
17 @REM ########################################################################
18 @REM This is the location of the cmake build output using the MSVC Generator
19 @set TMPEXE=..\build\cmake\Release\tidy5.exe
20 @REM === some other test EXE I can use for compare ===
21 @REM set TMPEXE=C:\Projects\tidy\tidy-cvs\build\msvc\Release\tidy.exe
22 @REM set TMPEXE=C:\MDOS\tidydev.exe
23 @REM ########################################################################
24 @if NOT EXIST %TMPEXE% goto NOEXE
25
26 @set TMPTEST=temptests.txt
27 @if EXIST %TMPTEST% @del %TMPTEST%
28
29 @call alltest1 %TMPEXE% temp-5
30
31 @goto END
32
33 :NOEXE
34 @echo.
35 @echo Error: Can NOT locate %TMPEXE%! Has it been built?
36 @echo *** FIX ME *** setting the location of the EXE to use for the test
37 :END