Tools made in assistance of the Metacall Project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 rivejä
581 B

4 vuotta sitten
4 vuotta sitten
  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"