diff --git a/test/cli/proj-inline-suppress/1.c b/test/cli/proj-inline-suppress/1.c deleted file mode 100644 index 484aeee6d..000000000 --- a/test/cli/proj-inline-suppress/1.c +++ /dev/null @@ -1,2 +0,0 @@ -#include <1.h> - diff --git a/test/cli/proj-inline-suppress/1.h b/test/cli/proj-inline-suppress/1.h deleted file mode 100644 index 9ca29fb80..000000000 --- a/test/cli/proj-inline-suppress/1.h +++ /dev/null @@ -1,5 +0,0 @@ - -// cppcheck-suppress zerodiv -const int x = 10000 / 0; - - diff --git a/test/cli/test-inline-suppress.py b/test/cli/test-inline-suppress.py deleted file mode 100644 index 090ef1199..000000000 --- a/test/cli/test-inline-suppress.py +++ /dev/null @@ -1,17 +0,0 @@ - -# python -m pytest test-inline-suppress.py - -import os -import re -from testutils import cppcheck - -def test1(): - ret, stdout, stderr = cppcheck('--inline-suppr proj-inline-suppress') - assert ret == 0 - assert len(stderr) == 0 - -def test2(): - ret, stdout, stderr = cppcheck('proj-inline-suppress') - assert ret == 0 - assert len(stderr) > 0 -