Skip to content

Commit

Permalink
Removed from Hello World target test success notification
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemekWirkus committed Sep 2, 2014
1 parent 1bdc4b8 commit d71a757
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/tests/mbed/hello/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
int main()
{
printf("Hello World\n");
notify_completion(true);
while(1);
}
2 changes: 1 addition & 1 deletion workspace_tools/host_tests/hello_auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def run(self):
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')
Expand Down

0 comments on commit d71a757

Please sign in to comment.