aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/configuration.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/rt/configuration.xml')
-rw-r--r--test/rt/configuration.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/rt/configuration.xml b/test/rt/configuration.xml
index 261321440..fda3392ee 100644
--- a/test/rt/configuration.xml
+++ b/test/rt/configuration.xml
@@ -411,6 +411,9 @@ chSysEnable();]]></value>
<code>
<value><![CDATA[systime_t time = chVTGetSystemTimeX();
while (time == chVTGetSystemTimeX()) {
+#if defined(SIMULATOR)
+ _sim_check_for_interrupts();
+#endif
}]]></value>
</code>
</step>
@@ -3918,7 +3921,7 @@ test_assert(threads[1] != NULL, "thread creation failed");]]></value>
</tags>
<code>
<value><![CDATA[threads[2] = chThdCreateFromHeap(&heap1,
- THD_WORKING_AREA_SIZE(THREADS_STACK_SIZE * 16),
+ THD_WORKING_AREA_SIZE(THREADS_STACK_SIZE * 1024),
"dyn3",
prio-3, dyn_thread1, "C");
test_assert(threads[2] == NULL, "thread creation not failed");]]></value>