From 67ae5035c8123c83bb338b49b01786bcab6591b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Tue, 25 Jun 2024 21:46:28 +0200 Subject: [PATCH] test/sys/progress_bar: temporary printout to debug flaky test --- tests/sys/progress_bar/tests/01-run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sys/progress_bar/tests/01-run.py b/tests/sys/progress_bar/tests/01-run.py index 29ebe6d41b..f7b4ed1b1d 100755 --- a/tests/sys/progress_bar/tests/01-run.py +++ b/tests/sys/progress_bar/tests/01-run.py @@ -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!")