Skip to content

Commit 69b77c6

Browse files
committed
s
1 parent f7a827c commit 69b77c6

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

test/cli/testutils.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,11 @@ def get_cache_contents():
250250
# TODO: check that the cached results were actually used - run with --debug-analyzerinfo, check timestamps, etc.
251251
return_code_1, stdout_1, stderr_1 = run_cppcheck()
252252

253+
print('exitcode - expected')
254+
print(return_code)
255+
print('exitcode - actual')
256+
print(return_code_1)
257+
253258
# TODO: the following asserts do not show a diff when the test fails
254259
# this can apparently by fixed by using register_assert_rewrite() but I have no idea how
255260

@@ -280,6 +285,11 @@ def get_cache_contents():
280285

281286
cache_content_1 = get_cache_contents()
282287

288+
print('cache - expected')
289+
print(cache_content)
290+
print('cache - actual')
291+
print(cache_content_1)
292+
283293
assert cache_content == cache_content_1
284294

285295
if builddir_tmp:

0 commit comments

Comments
 (0)