Backed out 2 changesets (bug 903746) for causing non-unified build bustages on nsIPri...
[gecko.git] / third_party / highway / run_tests.bat
blob26600a2c4f7029e6912e48131269e7d561799cae
1 @echo off
2 REM Switch directory of this batch file
3 cd %~dp0
5 if not exist build_win mkdir build_win
7 cd build_win
8 cmake .. -DHWY_WARNINGS_ARE_ERRORS:BOOL=ON -G Ninja || goto error
9 ninja || goto error
10 ctest -j || goto error
12 cd ..
13 echo Success
14 goto end
16 :error
17 echo Failure
18 exit /b 1
20 :end