1
0
mirror of https://github.com/golang/go synced 2024-09-30 17:38:33 -06:00

runtime: don't test gdb on darwin

Fixes #9927

Change-Id: I2114cc21f7a4772e3d42bcad9642a8a545cd8e16
Reviewed-on: https://go-review.googlesource.com/5285
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2015-02-18 15:29:32 -08:00
parent c25c371098
commit 5dbbb77633

View 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")