Tools made in assistance of the Metacall Project
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

25 lignes
762 B

#!/bin/bash
g++ -Iinclude -std=c++17 -s -O3 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 -O3 -g tests/test03.cpp
./a.out || echo "FAILURE ON TEST03"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test04.cpp
./a.out || echo "FAILURE ON TEST04"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test05.cpp
./a.out || echo "FAILURE ON TEST05"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test06.cpp
./a.out || echo "FAILURE ON TEST06"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test07.cpp
./a.out || echo "FAILURE ON TEST07"
g++ -pthread -Iinclude -std=c++17 -O3 -g tests/test08.cpp
./a.out || echo "FAILURE ON TEST08"