We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f616bf2 commit 94b4160Copy full SHA for 94b4160
features/FEATURE_LWIP/TESTS/mbedmicro-net/udp_echo/main.cpp
@@ -58,11 +58,6 @@ void test_udp_echo() {
58
int err = eth.connect();
59
TEST_ASSERT_EQUAL(0, err);
60
61
- if (err) {
62
- printf("MBED: failed to connect with an error of %d\r\n", err);
63
- TEST_ASSERT_EQUAL(0, err);
64
- }
65
-
66
printf("UDP client IP Address is %s\n", eth.get_ip_address());
67
68
greentea_send_kv("target_ip", eth.get_ip_address());
features/FEATURE_LWIP/TESTS/mbedmicro-net/udp_echo_parallel/main.cpp
@@ -152,7 +152,7 @@ class Echo {
152
result = success == ECHO_LOOPS;
153
154
err = sock.close();
155
+ printf("[ID:%01u][%02u] Failed to close socket!\n", id, i);
156
if (err) {
157
result = false;
158
}
0 commit comments