/* * This is the body of the test. It does not do much except ensure * that the target is alive after initializing the TCP/IP stack. */ #include #include #include #include #include #include #define TEST_NAME "LIBBSD NETSHELL 1" /* * RTEMS Startup Task */ static void test_main(void) { rtems_shell_env_t env; memset(&env, 0, sizeof(env)); rtems_shell_main_loop( &env ); exit( 0 ); } #include