summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 02:46:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 02:46:39 +0000
commitd0862762558345bf73ef583025e4e51fc595903a (patch)
treea62de6522301e526de6c42a444e9f5094b25af83 /test/ruby
parent489e117fdcbcb66a7b5f404f7ecf9bc8427414d6 (diff)
downloadruby-d0862762558345bf73ef583025e4e51fc595903a.tar.gz
ruby-d0862762558345bf73ef583025e4e51fc595903a.tar.xz
ruby-d0862762558345bf73ef583025e4e51fc595903a.zip
* parse.y (string_content): get rid of segfault at empty evstr.
fixed: [ruby-dev:25113] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_system.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_system.rb b/test/ruby/test_system.rb
index 410dd83e2..826c615cd 100644
--- a/test/ruby/test_system.rb
+++ b/test/ruby/test_system.rb
@@ -60,4 +60,8 @@ class TestSystem < Test::Unit::TestCase
end
end
end
+
+ def test_empty_evstr # [ruby-dev:25113]
+ assert_equal("", eval('"#{}"', nil, __FILE__, __LINE__))
+ end
end