Remove extra syntax checking of test cases, it's too pedantic for now

This commit is contained in:
Daniel Marjamäki 2021-05-14 22:32:30 +02:00
parent 11c0cc3a6e
commit 2fcc0c3959
1 changed files with 0 additions and 9 deletions

View File

@ -108,12 +108,3 @@ jobs:
make -j$(nproc) run-dmake
git diff --exit-code
- name: extract tests and check syntax
run: |
mkdir temp1
python3 tools/extracttests.py --only-tp --code=temp1 test/testbufferoverrun.cpp
python3 tools/extracttests.py --only-tp --code=temp1 test/testnullpointer.cpp
python3 tools/extracttests.py --only-tp --code=temp1 test/testuninitvar.cpp
python3 tools/extracttests.py --only-tp --code=temp1 --check-function=functionVariableUsage test/testunusedvar.cpp
g++ -fsyntax-only temp1/*.cpp