Tools made in assistance of the Metacall Project
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
|
- #!/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"
|