]> Cypherpunks repositories - gostls13.git/commitdiff
misc/ios: increase iOS test harness timeout
authorElias Naur <elias.naur@gmail.com>
Thu, 27 Apr 2017 09:37:24 +0000 (11:37 +0200)
committerElias Naur <elias.naur@gmail.com>
Thu, 27 Apr 2017 14:42:37 +0000 (14:42 +0000)
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 <bradfitz@golang.org>
Run-TryBot: Elias Naur <elias.naur@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>

misc/ios/go_darwin_arm_exec.go

index aac5e9d760bc4f36e8d9f1f74dbe2ce9d6cea738..e84e513f933b3532717cf16fd578418252493926 100644 (file)
@@ -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