summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmmq01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-07 12:18:02 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-07 19:10:35 -0600
commit50162e061b6affd2ccf66f95558a0b8386a4e02c (patch)
treed528082656528b75a4e3fe087d49c560a21c303a /testsuites/psxtmtests/psxtmmq01
parenttmtests: Make output more uniform (diff)
downloadrtems-50162e061b6affd2ccf66f95558a0b8386a4e02c.tar.bz2
psxtmtests: Make output more uniform
Diffstat (limited to 'testsuites/psxtmtests/psxtmmq01')
-rw-r--r--testsuites/psxtmtests/psxtmmq01/init.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/testsuites/psxtmtests/psxtmmq01/init.c b/testsuites/psxtmtests/psxtmmq01/init.c
index 9510d327f9..344d42bfa1 100644
--- a/testsuites/psxtmtests/psxtmmq01/init.c
+++ b/testsuites/psxtmtests/psxtmmq01/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2012.
+ * COPYRIGHT (c) 1989-2013.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -45,7 +45,7 @@ static void benchmark_mq_open(int printable)
if (printable == 1)
put_time(
- "mq_open (first open)",
+ "mq_open: first open",
end_time,
1, /* Only executed once */
0,
@@ -68,7 +68,7 @@ static void benchmark_mq_open_second(int printable)
if (printable == 1)
put_time(
- "mq_open (second open)",
+ "mq_open: second open",
end_time,
1, /* Only executed once */
0,
@@ -89,7 +89,7 @@ static void benchmark_mq_close(int printable)
if (printable == 1)
put_time(
- "mq_close (close of first)",
+ "mq_close: close of first",
end_time,
1, /* Only executed once */
0,
@@ -109,7 +109,7 @@ static void benchmark_mq_close_second(int printable)
if (printable == 1)
put_time(
- "mq_close (close of second)",
+ "mq_close: close of second",
end_time,
1, /* Only executed once */
0,
@@ -128,7 +128,7 @@ static void benchmark_mq_unlink(void)
rtems_test_assert( status == 0 );
put_time(
- "mq_unlink",
+ "mq_unlink: only case",
end_time,
1, /* Only executed once */
0,
@@ -151,7 +151,7 @@ static void benchmark_mq_notify(void)
rtems_test_assert( status == 0 );
put_time(
- "mq_notify",
+ "mq_notify: only case",
end_time,
1, /* Only executed once */
0,
@@ -171,7 +171,7 @@ static void benchmark_mq_send(void)
rtems_test_assert( status != (-1) );
put_time(
- "mq_send - no threads waiting",
+ "mq_send: no threads waiting",
end_time,
1, /* Only executed once */
0,
@@ -193,7 +193,7 @@ static void benchmark_mq_receive(void)
rtems_test_assert( status != (-1) );
put_time(
- "mq_receive - available",
+ "mq_receive: available",
end_time,
1, /* Only executed once */
0,
@@ -217,7 +217,7 @@ static void benchmark_mq_timedsend(void)
rtems_test_assert( status != (-1) );
put_time(
- "mq_timedsend - no threads waiting",
+ "mq_timedsend: no threads waiting",
end_time,
1, /* Only executed once */
0,
@@ -243,7 +243,7 @@ static void benchmark_mq_timedreceive(void)
rtems_test_assert( status != (-1) );
put_time(
- "mq_timedreceive - available",
+ "mq_timedreceive: available",
end_time,
1, /* Only executed once */
0,