Removed from Hello World target test success notification

pull/475/head
Przemek Wirkus 2014-09-02 15:50:24 +01:00
parent 1bdc4b8046
commit d71a7579b4
2 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@
int main()
{
printf("Hello World\n");
notify_completion(true);
while(1);
}

View File

@ -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')