From: Shenghou Ma Date: Fri, 6 Feb 2015 19:33:44 +0000 (-0500) Subject: runtime: skip the gdb test if -iex is not supported X-Git-Tag: go1.5beta1~2096 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1b523384dc5c46e0a137d73f65dda636bfeda350;p=gostls13.git runtime: skip the gdb test if -iex is not supported It turns out -iex argument is not supported by all gdb versions, but as we need to add the auto-load safe path before loading the inferior, test -iex support first and skip the test if it's not available. We should still update our builders though. Change-Id: I355697de51baf12162ba6cb82f389dad93f93dc5 Reviewed-on: https://go-review.googlesource.com/4070 Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 7540fbfabc..4911dc000d 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -11,7 +11,7 @@ import ( ) func checkGdbPython(t *testing.T) { - cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-ex", "python import sys; print('go gdb python support')") + cmd := exec.Command("gdb", "-nx", "-q", "--batch", "-iex", "python import sys; print('go gdb python support')") out, err := cmd.CombinedOutput() if err != nil {