summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-11-23 15:17:56 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-01 14:25:16 +0100
commitd3b19719ad526b43917a3b86c27529ec86252b0b (patch)
treebdfc6489bd210a2b493327226ddf0f6f83803e62
parent73a5a6cb35063300eb8b659c033c7ab3f2c41cbc (diff)
testsuites/validation/tc-timecounter-install.c
-rw-r--r--testsuites/validation/tc-timecounter-install.c60
1 files changed, 30 insertions, 30 deletions
diff --git a/testsuites/validation/tc-timecounter-install.c b/testsuites/validation/tc-timecounter-install.c
index 575d6004e2..da2ed6b161 100644
--- a/testsuites/validation/tc-timecounter-install.c
+++ b/testsuites/validation/tc-timecounter-install.c
@@ -83,30 +83,30 @@
*
* - Check that CLOCK_REALTIME is frozen in seconds and nanoseconds format.
*
- * - Check the initial CLOCK_REALTIME in coarse precision in seconds and
+ * - Check the initial CLOCK_REALTIME in coarse resolution in seconds and
* nanoseconds format.
*
- * - Check that CLOCK_REALTIME is frozen in coarse precision in seconds and
+ * - Check that CLOCK_REALTIME is frozen in coarse resolution in seconds and
* nanoseconds format.
*
* - Check the initial CLOCK_REALTIME in binary time format.
*
* - Check that CLOCK_REALTIME is frozen in binary time format.
*
- * - Check the initial CLOCK_REALTIME in coarse precision in binary time
+ * - Check the initial CLOCK_REALTIME in coarse resolution in binary time
* format.
*
- * - Check that CLOCK_REALTIME is frozen in coarse precision in binary time
+ * - Check that CLOCK_REALTIME is frozen in coarse resolution in binary time
* format.
*
* - Check the initial CLOCK_REALTIME in seconds and microseconds format.
*
* - Check that CLOCK_REALTIME is frozen in seconds and microseconds format.
*
- * - Check the initial CLOCK_REALTIME in coarse precision in seconds and
+ * - Check the initial CLOCK_REALTIME in coarse resolution in seconds and
* microseconds format.
*
- * - Check that CLOCK_REALTIME is frozen in coarse precision in seconds and
+ * - Check that CLOCK_REALTIME is frozen in coarse resolution in seconds and
* microseconds format.
*
* - Check the initial boot time in seconds and nanoseconds format.
@@ -122,20 +122,20 @@
*
* - Check that CLOCK_MONOTONIC is frozen in seconds and nanoseconds format.
*
- * - Check the initial CLOCK_MONOTONIC in coarse precision in seconds and
+ * - Check the initial CLOCK_MONOTONIC in coarse resolution in seconds and
* nanoseconds format.
*
- * - Check that CLOCK_MONOTONIC is frozen in coarse precision in seconds and
+ * - Check that CLOCK_MONOTONIC is frozen in coarse resolution in seconds and
* nanoseconds format.
*
* - Check the initial CLOCK_MONOTONIC in binary time format.
*
* - Check that CLOCK_MONOTONIC is frozen in binary time format.
*
- * - Check the initial CLOCK_MONOTONIC in coarse precision in binary time
+ * - Check the initial CLOCK_MONOTONIC in coarse resolution in binary time
* format.
*
- * - Check that CLOCK_MONOTONIC is frozen in coarse precision in binary time
+ * - Check that CLOCK_MONOTONIC is frozen in coarse resolution in binary time
* format.
*
* - Check the initial CLOCK_MONOTONIC in signed binary time format.
@@ -146,10 +146,10 @@
*
* - Check that CLOCK_MONOTONIC is frozen in seconds and microseconds format.
*
- * - Check the initial CLOCK_MONOTONIC in coarse precision in seconds and
+ * - Check the initial CLOCK_MONOTONIC in coarse resolution in seconds and
* microseconds format.
*
- * - Check that CLOCK_MONOTONIC is frozen in coarse precision in seconds and
+ * - Check that CLOCK_MONOTONIC is frozen in coarse resolution in seconds and
* microseconds format.
*
* - Install timecounter of different quality levels and frequencies.
@@ -166,7 +166,7 @@
* - Install a timecounter with a low quality level. Check that it was not
* installed.
*
- * - Call the directives to get the time in the highest precision available to
+ * - Call the directives to get the time in the highest resolution available to
* the system.
*
* - Check that the timecounter was used by rtems_clock_get_realtime().
@@ -188,7 +188,7 @@
* - Check that the timecounter was used by
* rtems_clock_get_monotonic_timeval().
*
- * - Call the directives to get the time in a coarse precision.
+ * - Call the directives to get the time in a coarse resolution.
*
* - Check that the timecounter was not used by
* rtems_clock_get_realtime_coarse().
@@ -216,7 +216,7 @@
* - Check that the timecounter was not used by
* rtems_clock_get_boot_time_timeval().
*
- * - Call the directives to get the time in the highest precision available to
+ * - Call the directives to get the time in the highest resolution available to
* the system.
*
* - Prepare the timecounter to get a large time difference. Check that
@@ -405,7 +405,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_u64( ts.tv_nsec, 0 );
/*
- * Check the initial CLOCK_REALTIME in coarse precision in seconds and
+ * Check the initial CLOCK_REALTIME in coarse resolution in seconds and
* nanoseconds format.
*/
rtems_clock_get_realtime_coarse( &ts );
@@ -413,7 +413,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_u64( ts.tv_nsec, 0 );
/*
- * Check that CLOCK_REALTIME is frozen in coarse precision in seconds and
+ * Check that CLOCK_REALTIME is frozen in coarse resolution in seconds and
* nanoseconds format.
*/
rtems_clock_get_realtime_coarse( &ts );
@@ -435,7 +435,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_u64( bt.frac, 0 );
/*
- * Check the initial CLOCK_REALTIME in coarse precision in binary time
+ * Check the initial CLOCK_REALTIME in coarse resolution in binary time
* format.
*/
rtems_clock_get_realtime_coarse_bintime( &bt );
@@ -443,7 +443,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_u64( bt.frac, 0 );
/*
- * Check that CLOCK_REALTIME is frozen in coarse precision in binary time
+ * Check that CLOCK_REALTIME is frozen in coarse resolution in binary time
* format.
*/
rtems_clock_get_realtime_coarse_bintime( &bt );
@@ -465,7 +465,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_long( tv.tv_usec, 0 );
/*
- * Check the initial CLOCK_REALTIME in coarse precision in seconds and
+ * Check the initial CLOCK_REALTIME in coarse resolution in seconds and
* microseconds format.
*/
rtems_clock_get_realtime_coarse_timeval( &tv );
@@ -473,7 +473,7 @@ static void ScoreTimecounterValInstall_Action_1( void )
T_eq_long( tv.tv_usec, 0 );
/*
- * Check that CLOCK_REALTIME is frozen in coarse precision in seconds and
+ * Check that CLOCK_REALTIME is frozen in coarse resolution in seconds and
* microseconds format.
*/
rtems_clock_get_realtime_coarse_timeval( &tv );
@@ -528,7 +528,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_u64( ts.tv_nsec, 0 );
/*
- * Check the initial CLOCK_MONOTONIC in coarse precision in seconds and
+ * Check the initial CLOCK_MONOTONIC in coarse resolution in seconds and
* nanoseconds format.
*/
rtems_clock_get_monotonic_coarse( &ts );
@@ -536,7 +536,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_u64( ts.tv_nsec, 0 );
/*
- * Check that CLOCK_MONOTONIC is frozen in coarse precision in seconds and
+ * Check that CLOCK_MONOTONIC is frozen in coarse resolution in seconds and
* nanoseconds format.
*/
rtems_clock_get_monotonic_coarse( &ts );
@@ -558,7 +558,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_u64( bt.frac, 0 );
/*
- * Check the initial CLOCK_MONOTONIC in coarse precision in binary time
+ * Check the initial CLOCK_MONOTONIC in coarse resolution in binary time
* format.
*/
rtems_clock_get_monotonic_coarse_bintime( &bt );
@@ -566,7 +566,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_u64( bt.frac, 0 );
/*
- * Check that CLOCK_MONOTONIC is frozen in coarse precision in binary time
+ * Check that CLOCK_MONOTONIC is frozen in coarse resolution in binary time
* format.
*/
rtems_clock_get_monotonic_coarse_bintime( &bt );
@@ -600,7 +600,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_long( tv.tv_usec, 0 );
/*
- * Check the initial CLOCK_MONOTONIC in coarse precision in seconds and
+ * Check the initial CLOCK_MONOTONIC in coarse resolution in seconds and
* microseconds format.
*/
rtems_clock_get_monotonic_coarse_timeval( &tv );
@@ -608,7 +608,7 @@ static void ScoreTimecounterValInstall_Action_2( void )
T_eq_long( tv.tv_usec, 0 );
/*
- * Check that CLOCK_MONOTONIC is frozen in coarse precision in seconds and
+ * Check that CLOCK_MONOTONIC is frozen in coarse resolution in seconds and
* microseconds format.
*/
rtems_clock_get_monotonic_coarse_timeval( &tv );
@@ -710,7 +710,7 @@ static void ScoreTimecounterValInstall_Action_3( void )
}
/**
- * @brief Call the directives to get the time in the highest precision
+ * @brief Call the directives to get the time in the highest resolution
* available to the system.
*/
static void ScoreTimecounterValInstall_Action_4( void )
@@ -771,7 +771,7 @@ static void ScoreTimecounterValInstall_Action_4( void )
}
/**
- * @brief Call the directives to get the time in a coarse precision.
+ * @brief Call the directives to get the time in a coarse resolution.
*/
static void ScoreTimecounterValInstall_Action_5( void )
{
@@ -848,7 +848,7 @@ static void ScoreTimecounterValInstall_Action_5( void )
}
/**
- * @brief Call the directives to get the time in the highest precision
+ * @brief Call the directives to get the time in the highest resolution
* available to the system.
*/
static void ScoreTimecounterValInstall_Action_6( void )