From d8d794c5225f2c1227cbdb85d45e27c66b82fe90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 15 May 2020 17:05:55 +0200 Subject: [PATCH] Fix validateXML --- cppcheck-errors.rng | 2 +- tools/dmake.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cppcheck-errors.rng b/cppcheck-errors.rng index dd134e319..57ce4224c 100644 --- a/cppcheck-errors.rng +++ b/cppcheck-errors.rng @@ -10,7 +10,7 @@ - [1-9]\.[0-9]+ + [1-9]\.[0-9]+.* diff --git a/tools/dmake.cpp b/tools/dmake.cpp index d16a3caa4..bcd34cf4f 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -481,7 +481,7 @@ int main(int argc, char **argv) fout << "/tmp/errorlist.xml: cppcheck\n"; fout << "\t./cppcheck --errorlist >$@\n"; fout << "/tmp/example.xml: cppcheck\n"; - fout << "\t./cppcheck --xml --enable=all --inconclusive --suppress=operatorEqVarError:*check.h --max-configs=1 -j 4 cli externals gui lib test 2>/tmp/example.xml\n"; + fout << "\t./cppcheck --xml --enable=all --inconclusive --max-configs=1 samples 2>/tmp/example.xml\n"; fout << "createXMLExamples:/tmp/errorlist.xml /tmp/example.xml\n"; fout << ".PHONY: validateXML\n"; fout << "validateXML: createXMLExamples\n";