Skip to content

Commit f52c00c

Browse files
committed
fixed CI. I remove dump files in cppcheck build dir after analysis.
1 parent 5524bb4 commit f52c00c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

test/cli/test-helloworld.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,8 @@ def test_build_dir_dump_output():
191191

192192
filename = f'{tempdir}/main.a1.*.dump'
193193
filelist = glob.glob(filename)
194-
assert(len(filelist) == 1)
194+
assert(len(filelist) == 0)
195195

196-
with open(filelist[0], 'rt') as f:
197-
dump = f.read()
198-
assert '</dump>' in dump, 'invalid dump data: ...' + dump[-100:]
199196

200197
def __test_missing_include_system(use_j):
201198
args = ['--enable=missingInclude', '--suppress=zerodiv', '--template={file}:{line}:{column}: {severity}:{inconclusive:inconclusive:} {message} [{id}]', 'helloworld']

0 commit comments

Comments
 (0)