mirror of https://github.com/ARMmbed/mbed-os.git
MBED_10 Hello World test host automation added to test suite
parent
54408560fd
commit
528b3136d3
|
@ -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;
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue