From 97ae79d76216dccf349d07e55245be2af9d78acb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 21 Apr 2014 09:07:57 -0500 Subject: fsdosfsformat01: Honor BSP_SMALL_MEMORY --- testsuites/fstests/fsdosfsformat01/init.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/testsuites/fstests/fsdosfsformat01/init.c b/testsuites/fstests/fsdosfsformat01/init.c index 976dc9cb7d..cb8a5eae44 100644 --- a/testsuites/fstests/fsdosfsformat01/init.c +++ b/testsuites/fstests/fsdosfsformat01/init.c @@ -18,6 +18,11 @@ #include "tmacros.h" +#include + +const char rtems_test_name[] = "FSDOSFSFORMAT 1"; + +#if !defined(BSP_SMALL_MEMORY) #include #include #include @@ -26,10 +31,6 @@ #include #include -#include - -const char rtems_test_name[] = "FSDOSFSFORMAT 1"; - #define MAX_PATH_LENGTH 100 /* Maximum number of characters per path */ #define SECTOR_SIZE 512 /* sector size (bytes) */ #define FAT12_MAX_CLN 4085 /* maximum + 1 number of clusters for FAT12 */ @@ -470,12 +471,17 @@ static void test( void ) rv = unlink( dev_name ); rtems_test_assert( rv == 0 ); } +#endif static void Init( rtems_task_argument arg ) { TEST_BEGIN(); +#if defined(BSP_SMALL_MEMORY) + puts( "Test is too large for small memory BSPs" ); +#else test(); +#endif TEST_END(); rtems_test_exit( 0 ); -- cgit v1.2.3