]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: don't test gdb on darwin
authorJosh Bleecher Snyder <josharian@gmail.com>
Wed, 18 Feb 2015 23:29:32 +0000 (15:29 -0800)
committerJosh Bleecher Snyder <josharian@gmail.com>
Thu, 19 Feb 2015 17:36:52 +0000 (17:36 +0000)
Fixes #9927

Change-Id: I2114cc21f7a4772e3d42bcad9642a8a545cd8e16
Reviewed-on: https://go-review.googlesource.com/5285
Reviewed-by: Minux Ma <minux@golang.org>
src/runtime/runtime-gdb_test.go

index a926f5fb85f4be7065ab0db76a9d3e1dd63ed69d..36a0dc9e3c322b19e31e86428c595c76dc44f8e0 100644 (file)
@@ -33,6 +33,10 @@ func main() {
 `
 
 func TestGdbPython(t *testing.T) {
+       if runtime.GOOS == "darwin" {
+               t.Skip("gdb does not work on darwin")
+       }
+
        checkGdbPython(t)
 
        dir, err := ioutil.TempDir("", "go-build")