-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refs #12274 - test/cli/suppress-syntaxError_test.py: made it location…
…-independent (#6638)
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
|
||
# python -m pytest test-suppress-syntaxError.py | ||
|
||
import os | ||
from testutils import cppcheck | ||
|
||
__script_dir = os.path.dirname(os.path.abspath(__file__)) | ||
|
||
def test_j(): | ||
ret, stdout, stderr = cppcheck(['-q', '--error-exitcode=1', '-j2', '-q', 'proj-suppress-syntaxError']) | ||
ret, stdout, stderr = cppcheck(['-q', '--error-exitcode=1', '-j2', '-q', 'proj-suppress-syntaxError'], cwd=__script_dir) | ||
assert ret == 1, stdout | ||
assert len(stderr) > 0 | ||
|
||
def test_suppress_j(): | ||
ret, stdout, stderr = cppcheck(['-q', '--error-exitcode=1', '--suppress=*:proj-suppress-syntaxError/*', '-j2', '-q', 'proj-suppress-syntaxError']) | ||
ret, stdout, stderr = cppcheck(['-q', '--error-exitcode=1', '--suppress=*:proj-suppress-syntaxError/*', '-j2', '-q', 'proj-suppress-syntaxError'], cwd=__script_dir) | ||
assert ret == 0, stdout | ||
assert len(stderr) == 0 | ||
|
||
# TODO: test with -j2 | ||
def test_safety_suppress_syntax_error_implicitly(tmpdir): | ||
ret, stdout, stderr = cppcheck(['-q', '--safety', '--suppress=*', 'proj-suppress-syntaxError', '-j1'], remove_checkers_report=False) | ||
ret, stdout, stderr = cppcheck(['-q', '--safety', '--suppress=*', 'proj-suppress-syntaxError', '-j1'], remove_checkers_report=False, cwd=__script_dir) | ||
assert ret == 1, stdout | ||
assert '[syntaxError]' in stderr | ||
assert 'Active checkers: There was critical errors' in stderr | ||
|
||
# TODO: test with -j2 | ||
def test_safety_suppress_syntax_error_explicitly(): | ||
ret, stdout, stderr = cppcheck(['-q', '--safety', '--suppress=syntaxError', 'proj-suppress-syntaxError', '-j1'], remove_checkers_report=False) | ||
ret, stdout, stderr = cppcheck(['-q', '--safety', '--suppress=syntaxError', 'proj-suppress-syntaxError', '-j1'], remove_checkers_report=False, cwd=__script_dir) | ||
assert ret == 1, stdout | ||
assert '[syntaxError]' not in stderr | ||
assert 'Active checkers: There was critical errors' in stderr |