MBED_10 Hello World test host automation added to test suite

pull/258/head
Przemek Wirkus 2014-04-08 10:20:44 +01:00
parent 54408560fd
commit 528b3136d3
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,6 @@ DigitalOut myled(LED1);
int main() { int main() {
printf("Hello World\n"); printf("Hello World\n");
while (true) { while (true) {
wait(0.5); wait(0.5);
myled = !myled; myled = !myled;

View File

@ -322,6 +322,8 @@ TESTS = [
"id": "MBED_10", "description": "Hello World", "id": "MBED_10", "description": "Hello World",
"source_dir": join(TEST_DIR, "mbed", "hello"), "source_dir": join(TEST_DIR, "mbed", "hello"),
"dependencies": [MBED_LIBRARIES], "dependencies": [MBED_LIBRARIES],
"automated": True,
"host_test": "hello_auto",
}, },
{ {
"id": "MBED_11", "description": "Ticker Int", "id": "MBED_11", "description": "Ticker Int",