From cf76ba2a647e368d1567ebc26a5d3de064ce09d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 9 Sep 2026 17:43:09 +0200 Subject: [PATCH 1/2] release: generated lib/checkers.cpp --- lib/checkers.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/checkers.cpp b/lib/checkers.cpp index 60785cc2479..1b98a8b4d33 100644 --- a/lib/checkers.cpp +++ b/lib/checkers.cpp @@ -101,8 +101,8 @@ namespace checkers { {"CheckFunctions::useStandardLibrary","style"}, {"CheckIO::checkCoutCerrMisusage","c"}, {"CheckIO::checkFileUsage",""}, - {"CheckIO::checkWrongfeofUsage",""}, {"CheckIO::checkWrongPrintfScanfArguments",""}, + {"CheckIO::checkWrongfeofUsage",""}, {"CheckIO::invalidScanf",""}, {"CheckLeakAutoVar::check","notclang"}, {"CheckMemoryLeakInClass::check",""}, @@ -146,6 +146,7 @@ namespace checkers { {"CheckOther::checkSuspiciousSemicolon","warning,inconclusive"}, {"CheckOther::checkUnionZeroInit","portability"}, {"CheckOther::checkUnreachableCode","style"}, + {"CheckOther::checkUnreachableSwitchCase","style"}, {"CheckOther::checkUnusedLabel","style,warning"}, {"CheckOther::checkVarFuncNullUB","portability"}, {"CheckOther::checkVariableScope","style,notclang"}, @@ -1709,6 +1710,7 @@ std::vector checkers::certCInfo{ {"DCL39-C", "L3"}, {"DCL40-C", "L3"}, {"DCL41-C", "L2"}, + {"DCL42-C", "L3"}, {"ENV30-C", "L3"}, {"ENV31-C", "L3"}, {"ENV32-C", "L1"}, @@ -1751,6 +1753,7 @@ std::vector checkers::certCInfo{ {"FLP34-C", "L3"}, {"FLP36-C", "L3"}, {"FLP37-C", "L3"}, + {"FLP38-C", "L3"}, {"INT30-C", "L2"}, {"INT31-C", "L1"}, {"INT32-C", "L1"}, From e06c4cc4911ac8f802f49a822fec538b98722716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 11 Sep 2026 06:55:54 +0200 Subject: [PATCH 2/2] 2 --- test/cli/other_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/cli/other_test.py b/test/cli/other_test.py index 3979f2dd8b8..aad4fec264e 100644 --- a/test/cli/other_test.py +++ b/test/cli/other_test.py @@ -4453,25 +4453,25 @@ def __test_active_checkers(tmp_path, active_cnt, total_cnt, use_misra=False, use def test_active_unusedfunction_only(tmp_path): - __test_active_checkers(tmp_path, 1, 188, use_unusedfunction_only=True) + __test_active_checkers(tmp_path, 1, 189, use_unusedfunction_only=True) def test_active_unusedfunction_only_builddir(tmp_path): checkers_exp = [ 'CheckUnusedFunctions::check' ] - __test_active_checkers(tmp_path, 1, 188, use_unusedfunction_only=True, checkers_exp=checkers_exp) + __test_active_checkers(tmp_path, 1, 189, use_unusedfunction_only=True, checkers_exp=checkers_exp) def test_active_unusedfunction_only_misra(tmp_path): - __test_active_checkers(tmp_path, 1, 388, use_unusedfunction_only=True, use_misra=True) + __test_active_checkers(tmp_path, 1, 389, use_unusedfunction_only=True, use_misra=True) def test_active_unusedfunction_only_misra_builddir(tmp_path): checkers_exp = [ 'CheckUnusedFunctions::check' ] - __test_active_checkers(tmp_path, 1, 388, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp) + __test_active_checkers(tmp_path, 1, 389, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp) def test_analyzerinfo(tmp_path):