Skip to content

Commit 6ba52e3

Browse files
committed
webdav: skip TestDir on nacl
Updates golang/go#12004. Change-Id: Id3c1e543a1fc4d246d04d26302b9da46f199fdee Reviewed-on: https://go-review.googlesource.com/13055 Reviewed-by: Nigel Tao <nigeltao@golang.org>
1 parent 76c2dd9 commit 6ba52e3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

webdav/file_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,10 @@ func testFS(t *testing.T, fs FileSystem) {
507507
}
508508

509509
func TestDir(t *testing.T) {
510-
if runtime.GOOS == "plan9" {
510+
switch runtime.GOOS {
511+
case "nacl":
512+
t.Skip("see golang.org/issue/12004")
513+
case "plan9":
511514
t.Skip("see golang.org/issue/11453")
512515
}
513516

0 commit comments

Comments
 (0)