cppcheck/test/cli/test-suppress-syntaxError.py

16 lines
464 B
Python
Raw Normal View History

2019-05-01 11:54:13 +02:00
# python -m pytest test-suppress-syntaxError.py
from testutils import cppcheck
def test_j2():
2019-06-22 19:20:15 +02:00
ret, stdout, stderr = cppcheck(['--error-exitcode=1', '-j2', '-q', 'proj-suppress-syntaxError'])
2019-05-01 11:54:13 +02:00
assert ret == 1
assert len(stderr) > 0
def test_j2_suppress():
2019-06-22 19:20:15 +02:00
ret, stdout, stderr = cppcheck(['--error-exitcode=1', '--suppress=*:proj-suppress-syntaxError/*', '-j2', '-q', 'proj-suppress-syntaxError'])
2019-05-01 11:54:13 +02:00
assert ret == 0
assert len(stderr) == 0