From a5a47442502e8e42b390f458f8f91dea3de872eb Mon Sep 17 00:00:00 2001 From: qmuntal Date: Mon, 19 Dec 2022 14:41:09 +0100 Subject: [PATCH] os: reenable TestReaddirSmallSeek on windows TestReaddirSmallSeek should have been reenabled as part of CL 405275, but didn't. Do it now. Updates #36019 Change-Id: I5676eee4e63675d30e9d48ac708e72bd036b6aee Reviewed-on: https://go-review.googlesource.com/c/go/+/458336 Reviewed-by: Alex Brainman TryBot-Result: Gopher Robot Run-TryBot: Quim Muntal Reviewed-by: Roland Shoemaker Reviewed-by: David Chase --- src/os/os_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/os/os_test.go b/src/os/os_test.go index bc27b2db49..277b2455e6 100644 --- a/src/os/os_test.go +++ b/src/os/os_test.go @@ -2608,9 +2608,6 @@ func TestReaddirSmallSeek(t *testing.T) { // See issue 37161. Read only one entry from a directory, // seek to the beginning, and read again. We should not see // duplicate entries. - if runtime.GOOS == "windows" { - testenv.SkipFlaky(t, 36019) - } wd, err := Getwd() if err != nil { t.Fatal(err) -- 2.50.0