From d55c260bb6f56468adfe7d45cf3c6e013f7461b7 Mon Sep 17 00:00:00 2001 From: yugui Date: Thu, 30 Oct 2008 14:36:31 +0000 Subject: * test/test_delegate.rb (test_syscallerror_eq): ignored because the behaviour is now unspecified. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/test_delegate.rb | 9 +++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 05e58b71c..3c4bebeb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 30 23:32:17 2008 Yuki Sonoda (Yugui) + + * test/test_delegate.rb (test_syscallerror_eq): ignored because the + behaviour is now unspecified. + Thu Oct 30 21:32:15 2008 Yusuke Endoh * array.c (rb_ary_permutation): hide temporal array. diff --git a/test/test_delegate.rb b/test/test_delegate.rb index 0b4c117eb..5fa60dee8 100644 --- a/test/test_delegate.rb +++ b/test/test_delegate.rb @@ -13,10 +13,11 @@ class TestDelegateClass < Test::Unit::TestCase assert_equal(:m, obj.m, "[ruby-dev:33116]") end - def test_systemcallerror_eq - e = SystemCallError.new(0) - assert((SimpleDelegator.new(e) == e) == (e == SimpleDelegator.new(e)), "[ruby-dev:34808]") - end + # became pending by [ruby-dev:36950]. + # def test_systemcallerror_eq + # e = SystemCallError.new(0) + # assert((SimpleDelegator.new(e) == e) == (e == SimpleDelegator.new(e)), "[ruby-dev:34808]") + # end class Myclass < DelegateClass(Array);end -- cgit