ssp/test/test_single_header.sh

15 lines
252 B
Bash
Raw Permalink Normal View History

2022-03-30 18:35:10 +02:00
#!/bin/bash
2022-03-30 19:56:57 +02:00
set -x
2022-03-30 18:35:10 +02:00
set -e
python3 script/single_header_generator.py > ssp.cpp
echo 'int main(){ ss::parser p{""}; p.get_next<int, float>(); return 0; }' \
>> ssp.cpp
g++ -std=c++17 ssp.cpp -o ssp.bin -Wall -Wextra
./ssp.bin
rm ssp.cpp ssp.bin