summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/pppd
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-05 09:47:30 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-06 18:31:00 -0500
commit3324383ce03f3d70a652f99291209e768d89c691 (patch)
tree152c8952e269ac8ac7bc5c90290fce9379a21e8a /testsuites/samples/pppd
parentmultiple BSPs: Remove BSP_SMALL_MEMORY (diff)
downloadrtems-3324383ce03f3d70a652f99291209e768d89c691.tar.bz2
testsuites: Remove BSP_SMALL_MEMORY
Diffstat (limited to 'testsuites/samples/pppd')
-rw-r--r--testsuites/samples/pppd/init.c6
-rw-r--r--testsuites/samples/pppd/pppdapp.c4
2 files changed, 0 insertions, 10 deletions
diff --git a/testsuites/samples/pppd/init.c b/testsuites/samples/pppd/init.c
index f2f17f036f..938eec5d12 100644
--- a/testsuites/samples/pppd/init.c
+++ b/testsuites/samples/pppd/init.c
@@ -18,25 +18,19 @@
#define CONFIGURE_INIT
#include "system.h"
-#if !BSP_SMALL_MEMORY
#include <rtems/rtems_bsdnet.h>
#include <rtems/rtemspppd.h>
#include "netconfig.h"
-#endif
const char rtems_test_name[] = "PPPD";
rtems_task Init(rtems_task_argument argument)
{
-#if BSP_SMALL_MEMORY
- printf("NO NETWORKING. MEMORY TOO SMALL");
-#else
rtems_test_begin();
/* initialize network */
rtems_bsdnet_initialize_network();
rtems_pppd_initialize();
pppdapp_initialize();
-#endif
rtems_task_delete(RTEMS_SELF);
}
diff --git a/testsuites/samples/pppd/pppdapp.c b/testsuites/samples/pppd/pppdapp.c
index 529912ae28..0eb789d82a 100644
--- a/testsuites/samples/pppd/pppdapp.c
+++ b/testsuites/samples/pppd/pppdapp.c
@@ -5,8 +5,6 @@
#include <bsp.h>
-#if !BSP_SMALL_MEMORY
-
#include <stdio.h>
#include <rtems/rtemspppd.h>
#include "system.h"
@@ -152,5 +150,3 @@ int pppdapp_initialize(void)
return ( iReturn );
}
-
-#endif