From 4e8ff4f010f95ca5d6e36e5e0659d4a7d0f61d35 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 24 Mar 2014 17:17:50 +0100 Subject: [PATCH] unit-tests: Prevent a failing worker thread to go wild after it fails A worker raises SIGUSR1 to inform the main thread that the test fails. The main thread then starts cancelling workers, but the offending thread should be terminated immediately to prevent it from test continuation. --- src/libstrongswan/tests/test_suite.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstrongswan/tests/test_suite.c b/src/libstrongswan/tests/test_suite.c index 0f2e74b7ca..fb40b05c13 100644 --- a/src/libstrongswan/tests/test_suite.c +++ b/src/libstrongswan/tests/test_suite.c @@ -136,7 +136,8 @@ static inline void test_failure() else { pthread_kill(main_thread, SIGUSR1); - /* how can we stop just the thread? longjmp to a restore point? */ + /* terminate thread to prevent it from going wild */ + pthread_exit(NULL); } } -- 2.47.2