Skip to content

Commit c2d3e56

Browse files
author
Your Name
committed
Update active checkers
1 parent 59c63a5 commit c2d3e56

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/cli/other_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
387
22
# python -m pytest test-other.py
33

44
import os
@@ -4429,25 +4429,25 @@ def __test_active_checkers(tmp_path, active_cnt, total_cnt, use_misra=False, use
44294429

44304430

44314431
def test_active_unusedfunction_only(tmp_path):
4432-
__test_active_checkers(tmp_path, 1, 187, use_unusedfunction_only=True)
4432+
__test_active_checkers(tmp_path, 1, 188, use_unusedfunction_only=True)
44334433

44344434

44354435
def test_active_unusedfunction_only_builddir(tmp_path):
44364436
checkers_exp = [
44374437
'CheckUnusedFunctions::check'
44384438
]
4439-
__test_active_checkers(tmp_path, 1, 187, use_unusedfunction_only=True, checkers_exp=checkers_exp)
4439+
__test_active_checkers(tmp_path, 1, 188, use_unusedfunction_only=True, checkers_exp=checkers_exp)
44404440

44414441

44424442
def test_active_unusedfunction_only_misra(tmp_path):
4443-
__test_active_checkers(tmp_path, 1, 387, use_unusedfunction_only=True, use_misra=True)
4443+
__test_active_checkers(tmp_path, 1, 388, use_unusedfunction_only=True, use_misra=True)
44444444

44454445

44464446
def test_active_unusedfunction_only_misra_builddir(tmp_path):
44474447
checkers_exp = [
44484448
'CheckUnusedFunctions::check'
44494449
]
4450-
__test_active_checkers(tmp_path, 1, 387, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
4450+
__test_active_checkers(tmp_path, 1, 388, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
44514451

44524452

44534453
def test_analyzerinfo(tmp_path):

0 commit comments

Comments
 (0)