mirror of
https://github.com/golang/go.git
synced 2025-05-05 23:53:05 +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" {
|
if runtime.GOOS == "windows" {
|
||||||
t.Skipf("diff tool non-existent for windows on builders")
|
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() {
|
defer func() {
|
||||||
Diff = false
|
Diff = false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user