We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_nullpointer_out_of_memory[True]
1 parent 8930b1d commit bcfc4e3Copy full SHA for bcfc4e3
test/cli/whole-program_test.py
@@ -372,7 +372,11 @@ def test_nullpointer_file0_builddir_j(tmpdir):
372
os.mkdir(build_dir)
373
__test_nullpointer_file0(['-j2', '--cppcheck-build-dir={}'.format(build_dir)])
374
375
-@pytest.mark.parametrize("single_file", (False,True))
+# TODO: this only succeeded because it depedent on the bugged unqiue message handling
376
+@pytest.mark.parametrize("single_file", [
377
+ False,
378
+ pytest.param(True, marks=pytest.mark.xfail(strict=True)),
379
+])
380
def test_nullpointer_out_of_memory(tmpdir, single_file):
381
"""Ensure that there are not duplicate warnings related to memory/resource allocation failures
382
https://trac.cppcheck.net/ticket/13521
0 commit comments