From 61186d8837509b46548084bea56f4c1f7f1953bb Mon Sep 17 00:00:00 2001 From: "staticfloat@gmail.com" Date: Wed, 20 Jun 2018 23:27:57 -0700 Subject: [PATCH] Sleep between all filesystem operations Attempt to fix https://github.com/JuliaLang/julia/issues/26725 --- stdlib/FileWatching/test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/FileWatching/test/runtests.jl b/stdlib/FileWatching/test/runtests.jl index 42d8db1bfb7b8..f1552a1571c86 100644 --- a/stdlib/FileWatching/test/runtests.jl +++ b/stdlib/FileWatching/test/runtests.jl @@ -321,8 +321,8 @@ function test_dirmonitor_wait2(tval) end @sync begin @async begin - sleep(tval) for i = 1:3 + sleep(tval) rm("$file$i") end end