mirror of
https://github.com/golang/go.git
synced 2025-05-24 00:41:24 +00:00
Fixes #51442 Updates #50051 Change-Id: I1bfbc08c907077467fd50febbec6299a9b73af41 Reviewed-on: https://go-review.googlesource.com/c/go/+/388916 Trust: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
14 lines
386 B
Go
14 lines
386 B
Go
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !windows
|
|
|
|
package testing
|
|
|
|
// isWindowsRetryable reports whether err is a Windows error code
|
|
// that may be fixed by retrying a failed filesystem operation.
|
|
func isWindowsRetryable(err error) bool {
|
|
return false
|
|
}
|