We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c118f commit fbc814aCopy full SHA for fbc814a
1 file changed
test/cli/other_test.py
@@ -2038,6 +2038,17 @@ def test_builddir_hash_check_level(tmp_path): # #13376
2038
build_dir = tmp_path / 'b1'
2039
os.mkdir(build_dir)
2040
2041
+ args = [ # // #14029
2042
+ '--enable=warning', # to execute the code which generates the normalCheckLevelMaxBranches message
2043
+ '--cppcheck-build-dir={}'.format(build_dir),
2044
+ '--template=simple',
2045
+ str(test_file)
2046
+ ]
2047
+
2048
+ exitcode, stdout, stderr = cppcheck(args)
2049
+ assert exitcode == 0, stdout
2050
+ assert stderr == ''
2051
2052
args = [
2053
'--enable=warning', # to execute the code which generates the normalCheckLevelMaxBranches message
2054
'--enable=information', # to show the normalCheckLevelMaxBranches message
0 commit comments