Skip to content

Commit f03b094

Browse files
fixup! Fix #958: warn when feof() is used as a while loop condition
1 parent a350346 commit f03b094

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/cli/other_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4318,25 +4318,25 @@ def __test_active_checkers(tmp_path, active_cnt, total_cnt, use_misra=False, use
43184318

43194319

43204320
def test_active_unusedfunction_only(tmp_path):
4321-
__test_active_checkers(tmp_path, 1, 186, use_unusedfunction_only=True)
4321+
__test_active_checkers(tmp_path, 1, 187, use_unusedfunction_only=True)
43224322

43234323

43244324
def test_active_unusedfunction_only_builddir(tmp_path):
43254325
checkers_exp = [
43264326
'CheckUnusedFunctions::check'
43274327
]
4328-
__test_active_checkers(tmp_path, 1, 186, use_unusedfunction_only=True, checkers_exp=checkers_exp)
4328+
__test_active_checkers(tmp_path, 1, 187, use_unusedfunction_only=True, checkers_exp=checkers_exp)
43294329

43304330

43314331
def test_active_unusedfunction_only_misra(tmp_path):
4332-
__test_active_checkers(tmp_path, 1, 386, use_unusedfunction_only=True, use_misra=True)
4332+
__test_active_checkers(tmp_path, 1, 387, use_unusedfunction_only=True, use_misra=True)
43334333

43344334

43354335
def test_active_unusedfunction_only_misra_builddir(tmp_path):
43364336
checkers_exp = [
43374337
'CheckUnusedFunctions::check'
43384338
]
4339-
__test_active_checkers(tmp_path, 1, 386, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
4339+
__test_active_checkers(tmp_path, 1, 387, use_unusedfunction_only=True, use_misra=True, checkers_exp=checkers_exp)
43404340

43414341

43424342
def test_analyzerinfo(tmp_path):

0 commit comments

Comments
 (0)