aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2021-08-11 22:02:59 -0400
committerDmitri Shuralyov <dmitshur@golang.org>2021-08-12 15:58:41 +0000
commit095bb790e132a498ba191ad6d27f89c1fc4c0232 (patch)
tree6021facddc507813bf6a73ac79ef5d954320b7ea
parentdea23e9ca80dd629041cba03ae2544dad19948ee (diff)
downloadgo-095bb790e132a498ba191ad6d27f89c1fc4c0232.tar.gz
go-095bb790e132a498ba191ad6d27f89c1fc4c0232.zip
os/exec: re-enable LookPathTest/16
This failure was confirmed to be due to a bug in prerelease versions of Windows, and has been fixed by now. Remove the skip for this test. Fixes #44379. Change-Id: Idfb92ffd6b9d416d4c78ef3800a5ffdda06c6562 Reviewed-on: https://go-review.googlesource.com/c/go/+/341455 Trust: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com>
-rw-r--r--src/os/exec/lp_windows_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os/exec/lp_windows_test.go b/src/os/exec/lp_windows_test.go
index f834ffede0..bbf6a9b7f1 100644
--- a/src/os/exec/lp_windows_test.go
+++ b/src/os/exec/lp_windows_test.go
@@ -312,9 +312,6 @@ func TestLookPath(t *testing.T) {
// Run all tests.
for i, test := range lookPathTests {
t.Run(fmt.Sprint(i), func(t *testing.T) {
- if i == 16 {
- t.Skip("golang.org/issue/44379")
- }
dir := filepath.Join(tmp, "d"+strconv.Itoa(i))
err := os.Mkdir(dir, 0700)
if err != nil {