18 lines
360 B
Python
18 lines
360 B
Python
|
|
# 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
|
|
# TODO assert len(stderr) == 0
|
|
|
|
def test2():
|
|
ret, stdout, stderr = cppcheck('proj-inline-suppress')
|
|
assert ret == 0
|
|
assert len(stderr) > 0
|
|
|