Skip to content

Commit 49f0467

Browse files
fixup! Fix #958: warn when feof() is used as a while loop condition
1 parent 905393d commit 49f0467

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
@@ -4319,25 +4319,25 @@ def __test_active_checkers(tmp_path, active_cnt, total_cnt, use_misra=False, use
43194319

43204320

43214321
def test_active_unusedfunction_only(tmp_path):
4322-
__test_active_checkers(tmp_path, 1, 186, use_unusedfunction_only=True)
4322+
__test_active_checkers(tmp_path, 1, 187, use_unusedfunction_only=True)
43234323

43244324

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

43314331

43324332
def test_active_unusedfunction_only_misra(tmp_path):
4333-
__test_active_checkers(tmp_path, 1, 386, use_unusedfunction_only=True, use_misra=True)
4333+
__test_active_checkers(tmp_path, 1, 387, use_unusedfunction_only=True, use_misra=True)
43344334

43354335

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

43424342

43434343
def test_analyzerinfo(tmp_path):

0 commit comments

Comments
 (0)