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.

12 line
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"