summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/file/identical.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/shared/file/identical.rb')
-rw-r--r--spec/ruby/shared/file/identical.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/ruby/shared/file/identical.rb b/spec/ruby/shared/file/identical.rb
index ecc21727ca..b7a2904839 100644
--- a/spec/ruby/shared/file/identical.rb
+++ b/spec/ruby/shared/file/identical.rb
@@ -9,7 +9,11 @@ describe :file_identical, shared: true do
touch(@file2) { |f| f.puts "file2" }
rm_r @link
- File.link(@file1, @link)
+ begin
+ File.link(@file1, @link)
+ rescue Errno::EACCES
+ File.symlink(@file1, @link)
+ end
end
after :each do