From 5f08e480f447a7f197f41686bf672d39b10c3518 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 24 Mar 2016 10:40:34 +0100 Subject: [PATCH] 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 --- misc/ios/go_darwin_arm_exec.go | 1 + 1 file changed, 1 insertion(+) 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 -- 2.48.1