]> git.kernelconcepts.de Git - karo-tx-redboot.git/blobdiff - packages/net/lwip_tcpip/v2_0/tests/tcpecho.c
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / net / lwip_tcpip / v2_0 / tests / tcpecho.c
index be9bb6fed33f62277032afcb29c422acfd30c1c9..345b28c1060a1ac82b3e30ef4c01a579037f9758 100644 (file)
@@ -34,6 +34,9 @@
 
 #include "lwip/sys.h"
 #include "lwip/api.h"
+#include <cyg/infra/testcase.h>
+
+#ifdef CYGPKG_LWIP_TCP
 
 static void 
 tcpecho_thread(void *arg)
@@ -88,8 +91,10 @@ static cyg_thread thread_data;
 static cyg_handle_t thread_handle;
 
 void
-cyg_user_start(void)
+tcpecho_main(void)
 {
+    CYG_TEST_INIT();
+    
     // Create a main thread, so we can run the scheduler and have time 'pass'
     cyg_thread_create(10,                // Priority - just a number
                       tmain,          // entry
@@ -100,6 +105,27 @@ cyg_user_start(void)
                       &thread_handle,    // Handle
                       &thread_data       // Thread data structure
             );
-    cyg_thread_resume(thread_handle);  // Start it
+            
+    cyg_thread_resume(thread_handle);  // Start it   
+    cyg_scheduler_start();
+    CYG_TEST_FAIL_FINISH("Not reached");
+}
+
+externC void
+cyg_start( void )
+{
+    tcpecho_main();
 }
 
+#else // def CYGPKG_LWIP_TCP
+#define N_A_MSG "TCP support disabled"
+#endif // def CYGFUN_KERNEL_API_C
+
+#ifdef N_A_MSG
+externC void
+cyg_start( void )
+{
+    CYG_TEST_INIT();
+    CYG_TEST_NA(N_A_MSG);
+}
+#endif // N_A_MSG