summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmsem02
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/psxtmsem02
parenttmtests: Make output more uniform (diff)
downloadrtems-50162e061b6affd2ccf66f95558a0b8386a4e02c.tar.bz2
psxtmtests: Make output more uniform
Diffstat (limited to 'testsuites/psxtmtests/psxtmsem02')
-rw-r--r--testsuites/psxtmtests/psxtmsem02/init.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuites/psxtmtests/psxtmsem02/init.c b/testsuites/psxtmtests/psxtmsem02/init.c
index 9a1fbdae5e..10bd15a681 100644
--- a/testsuites/psxtmtests/psxtmsem02/init.c
+++ b/testsuites/psxtmtests/psxtmsem02/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
@@ -37,7 +37,7 @@ static void benchmark_sem_getvalue(void)
rtems_test_assert( status == 0 );
put_time(
- "sem_getvalue",
+ "sem_getvalue: only case",
end_time,
1, /* Only executed once */
0,
@@ -56,7 +56,7 @@ static void benchmark_sem_wait(void)
rtems_test_assert( status == 0 );
put_time(
- "sem_wait – available",
+ "sem_wait: available",
end_time,
1, /* Only executed once */
0,
@@ -75,7 +75,7 @@ static void benchmark_sem_post(void)
rtems_test_assert( status == 0 );
put_time(
- "sem_post - no threads waiting",
+ "sem_post: no threads waiting",
end_time,
1, /* Only executed once */
0,
@@ -94,7 +94,7 @@ static void benchmark_sem_trywait_available(void)
rtems_test_assert( status == 0 );
put_time(
- "sem_trywait - available",
+ "sem_trywait: available",
end_time,
1, /* Only executed once */
0,
@@ -114,7 +114,7 @@ static void benchmark_sem_trywait_not_available(void)
rtems_test_assert( status != 0 );
put_time(
- "sem_trywait - not available",
+ "sem_trywait: not available",
end_time,
1, /* Only executed once */
0,