From 55243d090e58650d9350b4389875dc0e353f8b6e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 18 Mar 2015 13:49:36 +0100 Subject: testsupport: Do not suspend worker tasks --- cpukit/libmisc/testsupport/testparallel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpukit/libmisc/testsupport/testparallel.c b/cpukit/libmisc/testsupport/testparallel.c index b8dc16c598..86c685b113 100644 --- a/cpukit/libmisc/testsupport/testparallel.c +++ b/cpukit/libmisc/testsupport/testparallel.c @@ -106,7 +106,9 @@ static void worker_task(rtems_task_argument arg) run_tests(warg.ctx, warg.jobs, warg.job_count, warg.worker_index); - rtems_task_suspend(RTEMS_SELF); + while (true) { + /* Wait for delete by master worker */ + } } void rtems_test_parallel( -- cgit v1.2.3