mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-26 12:13:47 +00:00
Fix compile of UDP unit test
This commit is contained in:
parent
959042aa88
commit
c483520081
@ -19,7 +19,7 @@ udp_remove_all(void)
|
|||||||
pcb = pcb->next;
|
pcb = pcb->next;
|
||||||
udp_remove(pcb2);
|
udp_remove(pcb2);
|
||||||
}
|
}
|
||||||
fail_unless(lwip_stats.memp[MEMP_UDP_PCB].used == 0);
|
fail_unless(MEMP_STATS_GET(MEMP_UDP_PCB, used) == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Setups/teardown functions */
|
/* Setups/teardown functions */
|
||||||
@ -44,14 +44,14 @@ START_TEST(test_udp_new_remove)
|
|||||||
struct udp_pcb* pcb;
|
struct udp_pcb* pcb;
|
||||||
LWIP_UNUSED_ARG(_i);
|
LWIP_UNUSED_ARG(_i);
|
||||||
|
|
||||||
fail_unless(lwip_stats.memp[MEMP_UDP_PCB].used == 0);
|
fail_unless(MEMP_STATS_GET(MEMP_UDP_PCB, used) == 0);
|
||||||
|
|
||||||
pcb = udp_new();
|
pcb = udp_new();
|
||||||
fail_unless(pcb != NULL);
|
fail_unless(pcb != NULL);
|
||||||
if (pcb != NULL) {
|
if (pcb != NULL) {
|
||||||
fail_unless(lwip_stats.memp[MEMP_UDP_PCB].used == 1);
|
fail_unless(MEMP_STATS_GET(MEMP_UDP_PCB, used) == 1);
|
||||||
udp_remove(pcb);
|
udp_remove(pcb);
|
||||||
fail_unless(lwip_stats.memp[MEMP_UDP_PCB].used == 0);
|
fail_unless(MEMP_STATS_GET(MEMP_UDP_PCB, used) == 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
END_TEST
|
END_TEST
|
||||||
|
Loading…
Reference in New Issue
Block a user