Skip to content

Commit 095bb79

Browse files
committed
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 <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Cherry Mui <[email protected]>
1 parent dea23e9 commit 095bb79

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/os/exec/lp_windows_test.go

-3
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,6 @@ func TestLookPath(t *testing.T) {
312312
// Run all tests.
313313
for i, test := range lookPathTests {
314314
t.Run(fmt.Sprint(i), func(t *testing.T) {
315-
if i == 16 {
316-
t.Skip("golang.org/issue/44379")
317-
}
318315
dir := filepath.Join(tmp, "d"+strconv.Itoa(i))
319316
err := os.Mkdir(dir, 0700)
320317
if err != nil {

0 commit comments

Comments
 (0)