From 5fcc98b088e6018d17f8372ebd71e5268d3246a8 Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 2 Jan 2009 13:20:46 +0000 Subject: * bootstraptest/test_proc.rb: suppress error message. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ bootstraptest/test_proc.rb | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 254820b86..4f3cac50c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Jan 2 22:22:04 2009 Yusuke Endoh + + * bootstraptest/test_proc.rb: suppress error message. + Fri Jan 2 22:20:46 2009 Yusuke Endoh * test/ruby/test_process.rb (test_wait_and_sigchild): remove debug diff --git a/bootstraptest/test_proc.rb b/bootstraptest/test_proc.rb index 820dc1f76..28a23777a 100644 --- a/bootstraptest/test_proc.rb +++ b/bootstraptest/test_proc.rb @@ -420,6 +420,9 @@ assert_equal 'foo!', %q{ }, 'Subclass of Proc' assert_equal 'ok', %q{ + o = Object.new + def o.write(s); end + $stderr = o at_exit{ print $!.message } -- cgit