]> Cypherpunks repositories - gostls13.git/commitdiff
os/exec: re-enable LookPathTest/16
authorDmitri Shuralyov <dmitshur@golang.org>
Thu, 12 Aug 2021 02:02:59 +0000 (22:02 -0400)
committerDmitri Shuralyov <dmitshur@golang.org>
Thu, 12 Aug 2021 15:58:41 +0000 (15:58 +0000)
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>
src/os/exec/lp_windows_test.go

index f834ffede03609eb6fdb6de000cea871cf8ec201..bbf6a9b7f13b5ef5ac412c7eabac6dca3b56f11e 100644 (file)
@@ -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 {