fixed unit tests (one TCP test failed, removed comma at the end of array initializers)

This commit is contained in:
Simon Goldschmidt
2011-09-26 22:09:27 +02:00
parent 6c56151d27
commit bcfe3dacc6
4 changed files with 10 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
#error "This tests needs MEM-statistics enabled"
#endif
#if LWIP_DNS
/*#error "This test needs DNS turned off (as it mallocs on init)"*/
#error "This test needs DNS turned off (as it mallocs on init)"
#endif
/* Setups/teardown functions */
@@ -67,7 +67,7 @@ Suite *
mem_suite(void)
{
TFun tests[] = {
test_mem_one,
test_mem_one
};
return create_suite("MEM", tests, sizeof(tests)/sizeof(TFun), mem_setup, mem_teardown);
}