mirror of https://github.com/ARMmbed/mbed-os.git
Removed from Hello World target test success notification
parent
1bdc4b8046
commit
d71a7579b4
|
@ -3,5 +3,5 @@
|
|||
int main()
|
||||
{
|
||||
printf("Hello World\n");
|
||||
notify_completion(true);
|
||||
while(1);
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ class HelloTest(DefaultTest):
|
|||
res = re.search('^[$]+[0-9a-fA-F]+' + self.HELLO_WORLD, c)
|
||||
result = res is not None
|
||||
else:
|
||||
result = (c == self.HELLO_WORLD)
|
||||
result = (c.startswith(self.HELLO_WORLD))
|
||||
|
||||
if result: # Hello World received
|
||||
self.print_result('success')
|
||||
|
|
Loading…
Reference in New Issue