From 2fcc0c3959d8d16290771807a1313355439b5be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 14 May 2021 22:32:30 +0200 Subject: [PATCH] Remove extra syntax checking of test cases, it's too pedantic for now --- .github/workflows/scriptcheck.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/scriptcheck.yml b/.github/workflows/scriptcheck.yml index d00cd4195..5e1ab6df7 100644 --- a/.github/workflows/scriptcheck.yml +++ b/.github/workflows/scriptcheck.yml @@ -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 -