aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt
diff options
context:
space:
mode:
Diffstat (limited to 'test/rt')
-rw-r--r--test/rt/configuration.xml2
-rw-r--r--test/rt/source/test/test_sequence_003.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/rt/configuration.xml b/test/rt/configuration.xml
index 83b6e1bf2..0244205d7 100644
--- a/test/rt/configuration.xml
+++ b/test/rt/configuration.xml
@@ -815,7 +815,7 @@ time = chVTGetSystemTimeX();
msg = chThdSuspendTimeoutS(&tr1, MS2ST(1000));
chSysUnlock();
test_assert_time_window(time + MS2ST(1000),
- time + MS2ST(1000) + 1,
+ time + MS2ST(1000) + CH_CFG_ST_TIMEDELTA,
"out of time window");
test_assert(NULL == tr1, "not NULL");
test_assert(MSG_TIMEOUT == msg, "wrong returned message");]]></value>
diff --git a/test/rt/source/test/test_sequence_003.c b/test/rt/source/test/test_sequence_003.c
index 31b586481..bf5b4c73e 100644
--- a/test/rt/source/test/test_sequence_003.c
+++ b/test/rt/source/test/test_sequence_003.c
@@ -103,7 +103,7 @@ static void test_003_001_execute(void) {
msg = chThdSuspendTimeoutS(&tr1, MS2ST(1000));
chSysUnlock();
test_assert_time_window(time + MS2ST(1000),
- time + MS2ST(1000) + 1,
+ time + MS2ST(1000) + CH_CFG_ST_TIMEDELTA,
"out of time window");
test_assert(NULL == tr1, "not NULL");
test_assert(MSG_TIMEOUT == msg, "wrong returned message");