From: Elias Naur Date: Thu, 24 Mar 2016 09:40:34 +0000 (+0100) Subject: misc/ios: pass through SIGCONT in the exec wrapper X-Git-Tag: go1.7beta1~1123 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5f08e480f447a7f197f41686bf672d39b10c3518;p=gostls13.git misc/ios: pass through SIGCONT in the exec wrapper Instruct lldb to pass through SIGCONT unhindered when running iOS tests. Fixes the TestSIGCONT test in os/signal. For #14318 Change-Id: I669264208cc3d6ecae9fbc8790e0b753a93a5e04 Reviewed-on: https://go-review.googlesource.com/21071 Reviewed-by: David Crawshaw --- diff --git a/misc/ios/go_darwin_arm_exec.go b/misc/ios/go_darwin_arm_exec.go index 828efe91c1..0392b9c200 100644 --- a/misc/ios/go_darwin_arm_exec.go +++ b/misc/ios/go_darwin_arm_exec.go @@ -196,6 +196,7 @@ func run(bin string, args []string) (err error) { s.do(`process handle SIGHUP --stop false --pass true --notify false`) s.do(`process handle SIGPIPE --stop false --pass true --notify false`) s.do(`process handle SIGUSR1 --stop false --pass true --notify false`) + s.do(`process handle SIGCONT --stop false --pass true --notify false`) s.do(`process handle SIGSEGV --stop false --pass true --notify false`) // does not work s.do(`process handle SIGBUS --stop false --pass true --notify false`) // does not work