mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
refactor/rename: skip TestDiff on plan9, whose diff has no -u
Change-Id: I372591ad3f2804dcd20f0ab3b5a91ddda762cba8 Reviewed-on: https://go-review.googlesource.com/33586 Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
89662b06bc
commit
574d60b05a
@ -1130,6 +1130,9 @@ func TestDiff(t *testing.T) {
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skipf("diff tool non-existent for windows on builders")
|
||||
}
|
||||
if runtime.GOOS == "plan9" {
|
||||
t.Skipf("plan9 diff tool doesn't support -u flag")
|
||||
}
|
||||
|
||||
defer func() {
|
||||
Diff = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user