summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/utf8proc01/init.c
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/libtests/utf8proc01/init.c
parentmultiple BSPs: Remove BSP_SMALL_MEMORY (diff)
downloadrtems-3324383ce03f3d70a652f99291209e768d89c691.tar.bz2
testsuites: Remove BSP_SMALL_MEMORY
Diffstat (limited to 'testsuites/libtests/utf8proc01/init.c')
-rw-r--r--testsuites/libtests/utf8proc01/init.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/testsuites/libtests/utf8proc01/init.c b/testsuites/libtests/utf8proc01/init.c
index 06948fe44d..fd27451117 100644
--- a/testsuites/libtests/utf8proc01/init.c
+++ b/testsuites/libtests/utf8proc01/init.c
@@ -23,7 +23,6 @@
const char rtems_test_name[] = "UTF8PROC 1";
-#if !defined(BSP_SMALL_MEMORY)
static void
test_utf8proc_errmsg ( void )
{
@@ -248,17 +247,12 @@ static void test ( void )
test_utf8proc_normalize ( utf8proc_NFKD );
test_utf8proc_normalize ( utf8proc_NFKC );
}
-#endif
static void Init ( rtems_task_argument arg )
{
TEST_BEGIN();
-#if defined(BSP_SMALL_MEMORY)
- puts( "Does not run on small memory targets" );
-#else
- test();
-#endif
+ test ( );
TEST_END();