tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

run_tests.bat (288B)


      1 @echo off
      2 REM Switch directory of this batch file
      3 cd %~dp0
      4 
      5 if not exist build_win mkdir build_win
      6 
      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
     11 
     12 cd ..
     13 echo Success
     14 goto end
     15 
     16 :error
     17 echo Failure
     18 exit /b 1
     19 
     20 :end