Tools made in assistance of the Metacall Project
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

13 linhas
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"