Skip to content

Commit d8d794c

Browse files
committed
Fix validateXML
1 parent 57e9036 commit d8d794c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cppcheck-errors.rng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<element name="cppcheck">
1111
<attribute name="version">
1212
<data type="string">
13-
<param name="pattern">[1-9]\.[0-9]+</param>
13+
<param name="pattern">[1-9]\.[0-9]+.*</param>
1414
</data>
1515
</attribute>
1616
</element>

tools/dmake.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ int main(int argc, char **argv)
481481
fout << "/tmp/errorlist.xml: cppcheck\n";
482482
fout << "\t./cppcheck --errorlist >$@\n";
483483
fout << "/tmp/example.xml: cppcheck\n";
484-
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";
484+
fout << "\t./cppcheck --xml --enable=all --inconclusive --max-configs=1 samples 2>/tmp/example.xml\n";
485485
fout << "createXMLExamples:/tmp/errorlist.xml /tmp/example.xml\n";
486486
fout << ".PHONY: validateXML\n";
487487
fout << "validateXML: createXMLExamples\n";

0 commit comments

Comments
 (0)