1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20763 from mguetschow/nightly-debug-progressbar

test/sys/progress_bar: temporary printout to debug flaky test
This commit is contained in:
mguetschow 2024-06-25 20:00:23 +00:00 committed by GitHub
commit a3059feeda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,6 +24,8 @@ def testfunc(child):
progress_str += EMPTY_CHARACTER * (LENGTH - ratio)
check_str = 'Progress bar 0 |{}| {:3}%'.format(
progress_str, i)
# todo: temporary printout for debugging this flaky test
print("EXPECTS:", check_str)
child.expect_exact(check_str)
child.expect_exact("Done!")