From 8c3c1763f081ce7a42b089f7372ae10e7d67bd69 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 26 Jul 2000 20:44:11 +0000 Subject: Added ifdef on C4x to avoid invalid address alignment checks since there is no such thing on the C4x. --- c/src/tests/sptests/sp09/screen12.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'c/src/tests/sptests/sp09/screen12.c') diff --git a/c/src/tests/sptests/sp09/screen12.c b/c/src/tests/sptests/sp09/screen12.c index 26ee620fb3..1c3a6790db 100644 --- a/c/src/tests/sptests/sp09/screen12.c +++ b/c/src/tests/sptests/sp09/screen12.c @@ -43,6 +43,9 @@ void Screen12() ); puts( "TA1 - rtems_region_create - RTEMS_INVALID_NAME" ); +#if defined(_C3x) || defined(_C4x) + puts( "TA1 - rtems_region_create - RTEMS_INVALID_ADDRESS - SKIPPED" ); +#else status = rtems_region_create( Region_name[ 1 ], Region_bad_area, @@ -57,7 +60,11 @@ void Screen12() "rtems_region_create with illegal address" ); puts( "TA1 - rtems_region_create - RTEMS_INVALID_ADDRESS" ); +#endif +#if defined(_C3x) || defined(_C4x) + puts( "TA1 - rtems_region_create - RTEMS_INVALID_SIZE - SKIPPED" ); +#else status = rtems_region_create( Region_name[ 1 ], Region_good_area, @@ -72,6 +79,7 @@ void Screen12() "rtems_region_create with illegal size" ); puts( "TA1 - rtems_region_create - RTEMS_INVALID_SIZE" ); +#endif status = rtems_region_create( Region_name[ 1 ], -- cgit v1.2.3