Tools made in assistance of the Metacall Project
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

12 righe
391 B

  1. #!/bin/bash
  2. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test01.cpp
  3. ./a.out || echo "FAILURE ON TEST01"
  4. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test02.cpp
  5. ./a.out || echo "FAILURE ON TEST02"
  6. g++ -pthread -Iinclude -std=c++17 -O0 -g tests/test03.cpp
  7. ./a.out || echo "FAILURE ON TEST03"
  8. g++ -pthread -Iinclude -std=c++17 -O0 -g tests/test04.cpp
  9. ./a.out || echo "FAILURE ON TEST04"