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.

18 righe
581 B

4 anni fa
4 anni fa
  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 -O3 -g tests/test03.cpp
  7. ./a.out || echo "FAILURE ON TEST03"
  8. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test04.cpp
  9. ./a.out || echo "FAILURE ON TEST04"
  10. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test05.cpp
  11. ./a.out || echo "FAILURE ON TEST05"
  12. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test06.cpp
  13. ./a.out || echo "FAILURE ON TEST06"