I can't view all category defects(in the left side), because only right side is moving Look at https://qarmin.gitlab.io/-/godot/-/jobs/526221853/artifacts/report/index.html
Shouldn't cppcheck: unusedFunction check can't be used with '-j' option. Disabling unusedFunction check. be also added to xml file as error?
When I use 1.88, then cppcheck takes something around 500-1000MB, but when I use 1.90, then in some moment Cppcheck will take more and more memory and at the end it will crash system(I have on computer 24GB Ram) Steps to reproduce: 1. Download krita source code git clone https://invent.kde.org/kde/krita.git;cd krita 2. Check it with Cppcheck with this command cppcheck -q -j8 --enable=all --suppress=missingIncludeSystem --suppress=variableScope --suppress=ConfigurationNotChecked --suppress=unusedFunction...
Hi, When I create xml(in example Krita source code or Godot Engine) cppcheck -q -j8 --enable=all --suppress=missingIncludeSystem --suppress=variableScope --suppress=ConfigurationNotChecked --suppress=unusedFunction --force --xml --xml-version=2 . 2>&1 | tee cppcheckTEMP.xml then in file there is one line which broke htmlreport because is outside <xml></xml> cppcheck: unusedFunction check can't be used with '-j' option. Disabling unusedFunction check. <?xml version="1.0" encoding="UTF-8"?> <results...