summaryrefslogtreecommitdiff
path: root/benchmark/file_rename.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/file_rename.yml')
-rw-r--r--benchmark/file_rename.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/file_rename.yml b/benchmark/file_rename.yml
index 36a94d0b9b..f337026c14 100644
--- a/benchmark/file_rename.yml
+++ b/benchmark/file_rename.yml
@@ -7,9 +7,9 @@ benchmark:
max = 100_000
tmp = [ Tempfile.new('rename-a'), Tempfile.new('rename-b') ]
a, b = tmp.map { |x| x.path }
+ tmp.each { |t| t.close } # Windows can't rename files without closing them
max.times do
File.rename(a, b)
File.rename(b, a)
end
- tmp.each { |t| t.close! }
loop_count: 1