summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests/mp03
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 14:41:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 14:41:37 +0000
commita319ebef08dc16f0371459a0a709f792d7d498b2 (patch)
tree7de6c8e49ad5bac0f592e9665faaf8ca00738b9d /testsuites/mptests/mp03
parent2008-09-05 Eric Norum <norume@aps.anl.gov> (diff)
downloadrtems-a319ebef08dc16f0371459a0a709f792d7d498b2.tar.bz2
2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* mp03/delay.c, mp06/task1.c, mp06/node2/mp06-node2.scn, mp07/task1.c: Updating and fixing while running them on psim.
Diffstat (limited to 'testsuites/mptests/mp03')
-rw-r--r--testsuites/mptests/mp03/delay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/mptests/mp03/delay.c b/testsuites/mptests/mp03/delay.c
index 9a86ddb923..8829faa7af 100644
--- a/testsuites/mptests/mp03/delay.c
+++ b/testsuites/mptests/mp03/delay.c
@@ -26,5 +26,6 @@ rtems_timer_service_routine Delayed_send_event(
rtems_status_code status;
status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_16 );
- directive_failed_with_level( status, "rtems_event_send", 1 );
+ if ( status ) printk( "Delayed_send_event failed %d\n", status );
+ // directive_failed_with_level( status, "rtems_event_send", 1 );
}