We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12b5de commit beed835Copy full SHA for beed835
workspace_tools/host_tests/hello_auto.py
@@ -28,6 +28,7 @@ def run(self):
28
self.print_result("ioerr_serial")
29
return
30
print "Read %d bytes"% len(c)
31
+ print c
32
stdout.flush()
33
result = True
34
# Because we can have targetID here let's try to decode
workspace_tools/host_tests/rtc_auto.py
@@ -44,6 +44,9 @@ def run(self):
44
result_msg = "OK" if (time_str == correct_time_str) else "FAIL"
45
print "Got RTC time: " + c[:-1] + " ... " + result_msg
46
47
+ else:
48
+ test_result = False
49
+ break
50
51
if test_result: # All numbers are the same
52
self.print_result('success')
0 commit comments