Tools made in assistance of the Metacall Project
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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