From 482c2feb222ba9411755d185bea3c6109d88de36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Skrenkovic=CC=81?= Date: Fri, 3 May 2024 07:30:24 +0200 Subject: [PATCH] always support recurse in tests scripts --- helpers_test.go | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/helpers_test.go b/helpers_test.go index edff66e..c74ae77 100644 --- a/helpers_test.go +++ b/helpers_test.go @@ -598,15 +598,6 @@ func isSolaris() bool { return false } -func supportsRecurse(t *testing.T) { - switch runtime.GOOS { - case "windows": - // Run test. - default: - t.Skip("recursion not yet supported on " + runtime.GOOS) - } -} - func supportsFilter(t *testing.T) { switch runtime.GOOS { case "linux": @@ -781,7 +772,7 @@ loop: t.Skip(`"mknod fails with "not owner"`) } case "recurse": - supportsRecurse(t) + // noop - fsevents works with recurse by default case "filter": supportsFilter(t) case "nofollow":