ruby-changes:16081
From: usa <ko1@a...>
Date: Thu, 27 May 2010 14:47:26 +0900 (JST)
Subject: [ruby-changes:16081] Ruby:r28032 (trunk): * test/sdbm/test_sdbm.rb (test_s_open_error): doesn't support to avoid read
usa 2010-05-27 14:47:21 +0900 (Thu, 27 May 2010) New Revision: 28032 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28032 Log: * test/sdbm/test_sdbm.rb (test_s_open_error): doesn't support to avoid read access by owner on Windows Modified files: trunk/test/sdbm/test_sdbm.rb Index: test/sdbm/test_sdbm.rb =================================================================== --- test/sdbm/test_sdbm.rb (revision 28031) +++ test/sdbm/test_sdbm.rb (revision 28032) @@ -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/