mirror of https://github.com/ARMmbed/mbed-os.git
Added 'ethernet' peripheral dependency to all NET_x tests
parent
136b042f02
commit
d113ee7472
|
@ -575,6 +575,7 @@ TESTS = [
|
|||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY, TEST_MBED_LIB],
|
||||
"duration": 15,
|
||||
"automated": True,
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_2", "description": "UDP client hello world",
|
||||
|
@ -582,6 +583,7 @@ TESTS = [
|
|||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY, TEST_MBED_LIB],
|
||||
"duration": 15,
|
||||
"automated": True,
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_3", "description": "TCP echo server",
|
||||
|
@ -589,7 +591,7 @@ TESTS = [
|
|||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"automated": True,
|
||||
"host_test" : "tcpecho_server_auto",
|
||||
"peripherals": ["ethernet"]
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_4", "description": "TCP echo client",
|
||||
|
@ -634,26 +636,31 @@ TESTS = [
|
|||
"id": "NET_9", "description": "Multicast Send",
|
||||
"source_dir": join(TEST_DIR, "net", "helloworld", "multicast_send"),
|
||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_10", "description": "Multicast Receive",
|
||||
"source_dir": join(TEST_DIR, "net", "helloworld", "multicast_receive"),
|
||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_11", "description": "Broadcast Send",
|
||||
"source_dir": join(TEST_DIR, "net", "helloworld", "broadcast_send"),
|
||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_12", "description": "Broadcast Receive",
|
||||
"source_dir": join(TEST_DIR, "net", "helloworld", "broadcast_receive"),
|
||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
{
|
||||
"id": "NET_13", "description": "TCP client echo loop",
|
||||
"source_dir": join(TEST_DIR, "net", "echo", "tcp_client_loop"),
|
||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, ETH_LIBRARY],
|
||||
"peripherals": ["ethernet"],
|
||||
},
|
||||
|
||||
# u-blox tests
|
||||
|
|
Loading…
Reference in New Issue