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

13 行
391 B

#!/bin/bash
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test01.cpp
./a.out || echo "FAILURE ON TEST01"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test02.cpp
./a.out || echo "FAILURE ON TEST02"
g++ -pthread -Iinclude -std=c++17 -O0 -g tests/test03.cpp
./a.out || echo "FAILURE ON TEST03"
g++ -pthread -Iinclude -std=c++17 -O0 -g tests/test04.cpp
./a.out || echo "FAILURE ON TEST04"