mirror of
https://github.com/golang/go
synced 2024-11-05 15:26:15 -07: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:
parent
c25c371098
commit
5dbbb77633
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user