From f3a66a24abdac0db08fda2930e3aeea1613622a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Wed, 15 Dec 2021 20:53:10 +0100 Subject: [PATCH] htmlreport/check.sh: use less heavy input folder to reduce scriptcheck build times (#3617) --- htmlreport/check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htmlreport/check.sh b/htmlreport/check.sh index 44be21688..28e873815 100755 --- a/htmlreport/check.sh +++ b/htmlreport/check.sh @@ -40,7 +40,7 @@ validate_html "$INDEX_HTML" validate_html "$STATS_HTML" -../cppcheck ../gui/test --enable=all --inconclusive --xml-version=2 2> "$GUI_TEST_XML" +../cppcheck ../test/cfg --enable=all --inconclusive --xml-version=2 2> "$GUI_TEST_XML" xmllint --noout "$GUI_TEST_XML" $PYTHON cppcheck-htmlreport --file "$GUI_TEST_XML" --title "xml2 + inconclusive test" --report-dir "$REPORT_DIR" echo "" @@ -49,7 +49,7 @@ validate_html "$INDEX_HTML" validate_html "$STATS_HTML" -../cppcheck ../gui/test --enable=all --inconclusive --verbose --xml-version=2 2> "$GUI_TEST_XML" +../cppcheck ../test/cfg --enable=all --inconclusive --verbose --xml-version=2 2> "$GUI_TEST_XML" xmllint --noout "$GUI_TEST_XML" $PYTHON cppcheck-htmlreport --file "$GUI_TEST_XML" --title "xml2 + inconclusive + verbose test" --report-dir "$REPORT_DIR" echo -e "\n"