summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-07 12:28:38 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-07 19:10:35 -0600
commit2e50dcec702720c124cd64bc9d4446f4cdc57d0d (patch)
treeeacf4342b1b190a90709a0fdf7dd531e32cd98b6 /testsuites/tmtests/include
parentpsxtmtests: Make output more uniform (diff)
downloadrtems-2e50dcec702720c124cd64bc9d4446f4cdc57d0d.tar.bz2
timesys.h: Benchmark output now includes a dash for easier parsing
Diffstat (limited to 'testsuites/tmtests/include')
-rw-r--r--testsuites/tmtests/include/timesys.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/testsuites/tmtests/include/timesys.h b/testsuites/tmtests/include/timesys.h
index 1c4967bee5..de048131c4 100644
--- a/testsuites/tmtests/include/timesys.h
+++ b/testsuites/tmtests/include/timesys.h
@@ -1,9 +1,13 @@
-/* timesys.h
+/**
+ * @file
+ * @brief Timing Test Support
*
- * This header file contains the global variables for the Time
- * suite.
- *
- * COPYRIGHT (c) 1989-1999.
+ * This header file contains supporting definitions for the
+ * Timing Test Suites.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2013.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -35,7 +39,7 @@
#define put_time( _message, _total_time, \
_iterations, _loop_overhead, _overhead ) \
printf( \
- "%s %" PRId32 "\n", \
+ "%s - %" PRId32 "\n", \
(_message), \
(((_total_time) - (_loop_overhead)) / (_iterations)) - (_overhead) \
)