summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09/screen09.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp09/screen09.c')
-rw-r--r--testsuites/sptests/sp09/screen09.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/testsuites/sptests/sp09/screen09.c b/testsuites/sptests/sp09/screen09.c
index 407c45ebac..6fc0923576 100644
--- a/testsuites/sptests/sp09/screen09.c
+++ b/testsuites/sptests/sp09/screen09.c
@@ -25,46 +25,6 @@ void Screen9()
void *converted;
rtems_status_code status;
-#if ((CPU_SIMPLE_VECTORED_INTERRUPTS == FALSE) || \
- defined(_C3x) || defined(_C4x))
- puts(
- "TA1 - rtems_interrupt_catch - "
- "bad handler RTEMS_INVALID_ADDRESS -- SKIPPED"
- );
- puts(
- "TA1 - rtems_interrupt_catch - "
- "old isr RTEMS_INVALID_ADDRESS - SKIPPED" );
-#else
- rtems_isr_entry old_service_routine;
- status = rtems_interrupt_catch(
- Service_routine,
- ISR_INTERRUPT_MAXIMUM_VECTOR_NUMBER + 10,
- &old_service_routine
- );
- fatal_directive_status(
- status,
- RTEMS_INVALID_NUMBER,
- "rtems_interrupt_catch with invalid vector"
- );
- puts( "TA1 - rtems_interrupt_catch - RTEMS_INVALID_NUMBER" );
-
- status = rtems_interrupt_catch( NULL, 3, &old_service_routine );
- fatal_directive_status(
- status,
- RTEMS_INVALID_ADDRESS,
- "rtems_interrupt_catch with invalid handler"
- );
- puts( "TA1 - rtems_interrupt_catch - bad handler RTEMS_INVALID_ADDRESS" );
-
- status = rtems_interrupt_catch( Service_routine, 3, NULL );
- fatal_directive_status(
- status,
- RTEMS_INVALID_ADDRESS,
- "rtems_interrupt_catch with invalid old isr pointer"
- );
- puts( "TA1 - rtems_interrupt_catch - old isr RTEMS_INVALID_ADDRESS" );
-#endif
-
/* send invalid id */
status = rtems_signal_send( 100, RTEMS_SIGNAL_1 );
fatal_directive_status(