From 9a0dac5885ffea6b04027416378acad7c8dab96c Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 31 Dec 2009 16:50:11 +0000 Subject: [PATCH] Removed unused test function --- test/unit/udp/test_udp.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/unit/udp/test_udp.c b/test/unit/udp/test_udp.c index d9b407e0..a2f02af0 100644 --- a/test/unit/udp/test_udp.c +++ b/test/unit/udp/test_udp.c @@ -56,17 +56,6 @@ START_TEST(test_udp_new_remove) } END_TEST -START_TEST(test_udp_remove) -{ - struct udp_pcb* pcb; - LWIP_UNUSED_ARG(_i); - - pcb = NULL; - //pcb = udp_new(); - //fail_unless(pcb != NULL); -} -END_TEST - /** Create the suite including all tests for this module */ Suite * @@ -74,7 +63,6 @@ udp_suite(void) { TFun tests[] = { test_udp_new_remove, - test_udp_remove }; return create_suite("UDP", tests, sizeof(tests)/sizeof(TFun), udp_setup, udp_teardown); }