From 6e54fe47cecc93426f26b9c6c9807733dc62911a Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 27 Apr 2017 11:37:24 +0200 Subject: [PATCH] misc/ios: increase iOS test harness timeout The "lldb start" phase often times out on the iOS builder. Increase the timeout and see if that helps. Change-Id: I92fd67cbfa90659600e713198d6b2c5c78dde20f Reviewed-on: https://go-review.googlesource.com/41863 Reviewed-by: Brad Fitzpatrick Run-TryBot: Elias Naur TryBot-Result: Gobot Gobot --- misc/ios/go_darwin_arm_exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/ios/go_darwin_arm_exec.go b/misc/ios/go_darwin_arm_exec.go index aac5e9d760..e84e513f93 100644 --- a/misc/ios/go_darwin_arm_exec.go +++ b/misc/ios/go_darwin_arm_exec.go @@ -346,7 +346,7 @@ func newSession(appdir string, args []string, opts options) (*lldbSession, error i2 := s.out.LastIndex([]byte(" connect")) return i0 > 0 && i1 > 0 && i2 > 0 } - if err := s.wait("lldb start", cond, 10*time.Second); err != nil { + if err := s.wait("lldb start", cond, 15*time.Second); err != nil { panic(waitPanic{err}) } return s, nil -- 2.48.1