1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/fileutils/test_fileutils.rb: should take the existing symbolic

link for OpenBSD.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-11-26 06:42:52 +00:00
parent f5aa21c395
commit f3e1738d9c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Nov 26 15:38:47 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* test/fileutils/test_fileutils.rb: should take the existing symbolic
link for OpenBSD.
Wed Nov 26 04:48:42 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
* ext/syck/token.c: removed YYTOKTMP references which

View file

@ -303,7 +303,7 @@ if have_symlink?
assert_raises(Errno::EEXIST) {
ln 'tmp/cptmp', 'tmp/cptmp_symlink'
}
File.symlink 'tmp/symlink', 'tmp/symlink'
File.symlink '.', 'tmp/symlink'
assert_raises(Errno::EEXIST) {
ln 'tmp/symlink', 'tmp/symlink'
}