summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-02-22 19:34:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-02-22 19:34:14 +0000
commit3f4dce3152ac60ac0313138e86edbfb1cc5f103f (patch)
tree9d8e7d2b93176421c39dfaaccfbdc8af20c6ca94 /testsuites
parent2008-02-21 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-3f4dce3152ac60ac0313138e86edbfb1cc5f103f.tar.bz2
2008-02-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxmsgq02/init.c, psxsignal01/init.c: Corrent end of test messages.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/ChangeLog4
-rw-r--r--testsuites/psxtests/psxmsgq02/init.c2
-rw-r--r--testsuites/psxtests/psxsignal01/init.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog
index 2fb375e6e7..7a26ef4644 100644
--- a/testsuites/psxtests/ChangeLog
+++ b/testsuites/psxtests/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-22 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * psxmsgq02/init.c, psxsignal01/init.c: Corrent end of test messages.
+
2008-02-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxkey01/task.c: Fix warnings.
diff --git a/testsuites/psxtests/psxmsgq02/init.c b/testsuites/psxtests/psxmsgq02/init.c
index b82b81aa05..32bb6bcc47 100644
--- a/testsuites/psxtests/psxmsgq02/init.c
+++ b/testsuites/psxtests/psxmsgq02/init.c
@@ -58,7 +58,7 @@ void *POSIX_Init(
mq = mq_open( Get_Longest_Name(), O_WRONLY, 0x777, &attr );
fatal_posix_service_status_errno( mq, ENOMEM, "no workspace available" );
- puts( "*** END POSIX MESSAGE QUEUE 02 TEST ***" );
+ puts( "*** END OF POSIX MESSAGE QUEUE 02 TEST ***" );
rtems_test_exit( 0 );
return NULL; /* just so the compiler thinks we returned something */
diff --git a/testsuites/psxtests/psxsignal01/init.c b/testsuites/psxtests/psxsignal01/init.c
index 09231fc273..580acd92aa 100644
--- a/testsuites/psxtests/psxsignal01/init.c
+++ b/testsuites/psxtests/psxsignal01/init.c
@@ -221,11 +221,11 @@ void *POSIX_Init(
Signal_occurred = 0;
puts("*** Validate unexpected program termination ***");
+ puts( "*** END OF POSIX TEST SIGNAL ***" );
_POSIX_signals_Abnormal_termination_handler( SIGUSR1 );
status = sleep( 1 );
puts( "ERROR==> Expected program termination");
- puts( "*** END OF POSIX TEST SIGNAL ***" );
rtems_test_exit(0);
return NULL; /* just so the compiler thinks we returned something */
}