summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp03
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-07 23:04:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-11-07 23:04:50 +0000
commit0897d3818c5d1a6679adc6d649b40a243a2845b2 (patch)
treef9acde143432b7b1cdc7446b6898b67502e3ab35 /testsuites/mptests/mp03
parent2001-11-07 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0897d3818c5d1a6679adc6d649b40a243a2845b2.tar.bz2
2001-11-07 Joel Sherrill <joel@OARcorp.com>
Tracked as PR72 but related to the object id problem (PR36) reported by Todor.Todorov@barco.com. * mp03/delay.c: Dispatch disable level is actually 1 not 0. * mp13/system.h: Configure enough tasks (CONFIGURE_MAXIMUM_TASKS=3). * mp14/delay.c: Dispatch disable level may be arbitrarily > 0.
Diffstat (limited to 'testsuites/mptests/mp03')
-rw-r--r--testsuites/mptests/mp03/delay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/mptests/mp03/delay.c b/testsuites/mptests/mp03/delay.c
index 957a18aa7f..666dd3c1e8 100644
--- a/testsuites/mptests/mp03/delay.c
+++ b/testsuites/mptests/mp03/delay.c
@@ -26,5 +26,5 @@ rtems_timer_service_routine Delayed_send_event(
rtems_status_code status;
status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_16 );
- directive_failed( status, "rtems_event_send" );
+ directive_failed_with_level( status, "rtems_event_send", 1 );
}