diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-05 12:04:15 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-05 12:04:15 +0000 |
| commit | 98d671e37105fd9408bbf509e9c0f8f175c47b96 (patch) | |
| tree | c96c72763ba93490775311adb3fbd49b53ba377f | |
| parent | 411b60405162c33b354dfd7c6e3bcb02172925ce (diff) | |
| download | ruby-98d671e37105fd9408bbf509e9c0f8f175c47b96.tar.gz ruby-98d671e37105fd9408bbf509e9c0f8f175c47b96.tar.xz ruby-98d671e37105fd9408bbf509e9c0f8f175c47b96.zip | |
* yarvtest/yarvtest.rb : fix to compare results
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | yarvtest/yarvtest.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Jan 5 21:03:08 2007 Koichi Sasada <ko1@atdot.net> + + * yarvtest/yarvtest.rb : fix to compare results + Fri Jan 5 20:52:56 2007 Koichi Sasada <ko1@atdot.net> * compile.c, compile.h : add ADD_CALL_RECEIVER() macro. diff --git a/yarvtest/yarvtest.rb b/yarvtest/yarvtest.rb index 20085efe1..04cfd257e 100644 --- a/yarvtest/yarvtest.rb +++ b/yarvtest/yarvtest.rb @@ -96,7 +96,7 @@ class YarvTestBase < Test::Unit::TestCase puts "ruby (#$ruby): #{ruby}" end - assert_equal(ruby.gsub(/\r/, ''), ruby.gsub(/\r/, '')) + assert_equal(matzruby.gsub(/\r/, ''), ruby.gsub(/\r/, ''), str) # store/load test if false # || true |
