summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/iostream
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/iostream
parentmultiple BSPs: Remove BSP_SMALL_MEMORY (diff)
downloadrtems-3324383ce03f3d70a652f99291209e768d89c691.tar.bz2
testsuites: Remove BSP_SMALL_MEMORY
Diffstat (limited to 'testsuites/samples/iostream')
-rw-r--r--testsuites/samples/iostream/init.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/testsuites/samples/iostream/init.cc b/testsuites/samples/iostream/init.cc
index 610e73f03b..d987750c4e 100644
--- a/testsuites/samples/iostream/init.cc
+++ b/testsuites/samples/iostream/init.cc
@@ -21,11 +21,7 @@
#define CONFIGURE_INIT
#include "system.h"
-#if BSP_SMALL_MEMORY
-#include <stdio.h>
-#else
#include <iostream>
-#endif
#include <stdlib.h>
@@ -35,14 +31,10 @@ rtems_task Init(
rtems_task_argument ignored
)
{
-#if BSP_SMALL_MEMORY
- printf ("NO STDC++. MEMORY TOO SMALL");
-#else
std::cout << std::endl << std::endl
<< "*** BEGIN OF " << rtems_test_name << " TEST ***" << std::endl;
std::cout << "Hello World" << std::endl;
std::cout << "*** END OF " << rtems_test_name << " TEST ***" << std::endl;
-#endif
exit( 0 );
}