From df5d63f1efa54aa7b912f38c347a25575f2d9e5d Mon Sep 17 00:00:00 2001 From: FrancisANDRE Date: Thu, 10 Dec 2015 19:30:51 +0100 Subject: [PATCH] Fix per mikedld on the trap '' SIGINT issue when using bash wait. Signed-off-by: FrancisANDRE --- Foundation/testsuite/src/TestApp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Foundation/testsuite/src/TestApp.cpp b/Foundation/testsuite/src/TestApp.cpp index 442ab5b81..b5caabb54 100644 --- a/Foundation/testsuite/src/TestApp.cpp +++ b/Foundation/testsuite/src/TestApp.cpp @@ -49,6 +49,7 @@ int main(int argc, char** argv) } else if (arg == "-raise-int") { + std::signal(SIGINT, SIG_DFL); std::raise(SIGINT); } }