We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08c3227 commit c73b9bcCopy full SHA for c73b9bc
1 file changed
test/cli/more-projects_test.py
@@ -645,18 +645,18 @@ def test_shared_items_project(tmpdir = ""):
645
solutionFile = os.path.join(solutionDir, 'Solution.sln')
646
codeMainFile = os.path.join(solutionDir, 'Main', 'MainFile.cpp')
647
codeSharedFile = os.path.join(solutionDir, 'Shared', 'TestClass.cpp')
648
-
+
649
args = [
650
'--platform=win64',
651
'--project={}'.format(solutionFile),
652
'--project-configuration=Release|x64',
653
'-j1'
654
]
655
656
exitcode, stdout, stderr = cppcheck(args)
657
assert exitcode == 0
658
lines = stdout.splitlines()
659
660
# Assume no errors, and that shared items code files have been checked as well
661
assert any('2/2 files checked 100% done' in x for x in lines)
662
assert stderr == ''
0 commit comments