From eb1458669856968dc764f72d6d47977718819fec Mon Sep 17 00:00:00 2001 From: CoolSpy3 Date: Sun, 12 Jan 2025 02:02:29 -0800 Subject: [PATCH] debugging --- tests/api/controllers/robot_window_html/robot_window_html.c | 2 ++ .../controllers/test_suite_supervisor/test_suite_supervisor.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/api/controllers/robot_window_html/robot_window_html.c b/tests/api/controllers/robot_window_html/robot_window_html.c index 54526ca6024..8c041f29152 100644 --- a/tests/api/controllers/robot_window_html/robot_window_html.c +++ b/tests/api/controllers/robot_window_html/robot_window_html.c @@ -23,6 +23,8 @@ int main(int argc, char **argv) { } } + printf("CONFIGURED!!!!\n"); + while (!received) { // receive message sent by Webots. wb_robot_step(TIME_STEP); const char *test_message; diff --git a/tests/default/controllers/test_suite_supervisor/test_suite_supervisor.py b/tests/default/controllers/test_suite_supervisor/test_suite_supervisor.py index 6938b4a8c44..2f7c5610d5e 100644 --- a/tests/default/controllers/test_suite_supervisor/test_suite_supervisor.py +++ b/tests/default/controllers/test_suite_supervisor/test_suite_supervisor.py @@ -239,7 +239,7 @@ def run(self): receiver.enable(basicTimeStep) # 30 seconds before executing the next world, 60 seconds for the robot_window_html test - delay = 60 if self.currentSimulationFilename.endswith('/robot_window_html.wbt') else 30 + delay = 120 if self.currentSimulationFilename.endswith('/robot_window_html.wbt') else 30 if sys.platform == "darwin": # Longer timeout on MacOS because Webots takes longer to start there during CI. delay *= 10