summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxtimer01
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-14 21:34:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-10-14 21:34:43 +0000
commitc54e6f5e56a9c26740099712ddccc794643fbad2 (patch)
treed5b44a17257d099e5ee58f61690b3c48cf99f9a9 /testsuites/psxtests/psxtimer01
parent2009-10-14 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-c54e6f5e56a9c26740099712ddccc794643fbad2.tar.bz2
2009-10-14 Joel Sherrill <joel.sherrill@OARcorp.com>
* psxtimer01/psxtimer.c: It is not necessarily an error for the time remaining to not equal the period.
Diffstat (limited to 'testsuites/psxtests/psxtimer01')
-rw-r--r--testsuites/psxtests/psxtimer01/psxtimer.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxtimer01/psxtimer.c b/testsuites/psxtests/psxtimer01/psxtimer.c
index 52d3b4d0cc..9aee241a20 100644
--- a/testsuites/psxtests/psxtimer01/psxtimer.c
+++ b/testsuites/psxtests/psxtimer01/psxtimer.c
@@ -201,10 +201,22 @@ void * task_b (void *arg)
perror ("Error in timer_gettime\n");
rtems_test_exit(0);
}
+
+#if 0
+ /*
+ * It is not an error if they are not equal. A clock tick could occur
+ * and thus they are close but not equal. Can we test for this?
+ */
if ( !_Timespec_Equal_to( &timerdata.it_value, &my_period) ){
- perror ("Error in Task B timer_gettime\n");
+ printf( "NOT EQUAL %d:%d != %d:%d\n",
+ timerdata.it_value.tv_sec,
+ timerdata.it_value.tv_nsec,
+ my_period.tv_sec,
+ my_period.tv_nsec
+ );
rtems_test_exit(0);
}
+#endif
pthread_mutex_lock (&data.mutex);
clock = time(NULL);