ruby-changes:16083
From: usa <ko1@a...>
Date: Thu, 27 May 2010 14:48:41 +0900 (JST)
Subject: [ruby-changes:16083] Ruby:r28033 (ruby_1_9_2): * test/sdbm/test_sdbm.rb (test_s_open_error): doesn't support to avoid read
usa 2010-05-27 14:48:34 +0900 (Thu, 27 May 2010) New Revision: 28033 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28033 Log: * test/sdbm/test_sdbm.rb (test_s_open_error): doesn't support to avoid read access by owner on Windows Modified files: branches/ruby_1_9_2/test/sdbm/test_sdbm.rb Index: ruby_1_9_2/test/sdbm/test_sdbm.rb =================================================================== --- ruby_1_9_2/test/sdbm/test_sdbm.rb (revision 28032) +++ ruby_1_9_2/test/sdbm/test_sdbm.rb (revision 28033) @@ -120,6 +120,7 @@ end def test_s_open_error + skip "doesn't support to avoid read access by owner on Windows" if /mswin|mingw/ =~ RUBY_PLATFORM assert_instance_of(SDBM, sdbm = SDBM.open("#{@tmpdir}/#{@prefix}", 0)) assert_raise(Errno::EACCES) { SDBM.open("#{@tmpdir}/#{@prefix}", 0) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/