Tools made in assistance of the Metacall Project
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
762 B

il y a 3 ans
il y a 3 ans
  1. #!/bin/bash
  2. g++ -Iinclude -std=c++17 -s -O3 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"
  14. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test07.cpp
  15. ./a.out || echo "FAILURE ON TEST07"
  16. g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test08.cpp
  17. ./a.out || echo "FAILURE ON TEST08"