diff --git a/workspace_tools/host_tests/hello_auto.py b/workspace_tools/host_tests/hello_auto.py index 5b4149a942..8361eb560d 100644 --- a/workspace_tools/host_tests/hello_auto.py +++ b/workspace_tools/host_tests/hello_auto.py @@ -28,6 +28,7 @@ class HelloTest(DefaultTest): self.print_result("ioerr_serial") return print "Read %d bytes"% len(c) + print c stdout.flush() result = True # Because we can have targetID here let's try to decode diff --git a/workspace_tools/host_tests/rtc_auto.py b/workspace_tools/host_tests/rtc_auto.py index be2514c86c..86cabc8282 100644 --- a/workspace_tools/host_tests/rtc_auto.py +++ b/workspace_tools/host_tests/rtc_auto.py @@ -44,6 +44,9 @@ class RTCTest(DefaultTest): result_msg = "OK" if (time_str == correct_time_str) else "FAIL" print "Got RTC time: " + c[:-1] + " ... " + result_msg stdout.flush() + else: + test_result = False + break if test_result: # All numbers are the same self.print_result('success')