testsuites: Remove BSP_SMALL_MEMORY

This commit is contained in:
Joel Sherrill
2014-05-05 09:47:30 -05:00
parent 053abcda22
commit 3324383ce0
16 changed files with 18 additions and 153 deletions

View File

@@ -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();