Commit d8cd21be authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #203 from bovi/segv-string-literal

Raise SEGV by using String literal
parents 2d73abd8 61a47e34
...@@ -22,10 +22,9 @@ assert('Literals Numerical', '8.7.6.2') do ...@@ -22,10 +22,9 @@ assert('Literals Numerical', '8.7.6.2') do
1.0e1 == 10.0 and 1.0e-1 == 0.1 and 1.0e+1 == 10.0 1.0e1 == 10.0 and 1.0e-1 == 0.1 and 1.0e+1 == 10.0
end end
#assert('Literals Strings Single Quoted', '8.7.6.3.2') do assert('Literals Strings Single Quoted', '8.7.6.3.2') do
# creates segmentation fault for now 'abc' == 'abc' and '\'' == '\'' and '\\' == '\\'
# 'abc' == 'abc' and '\'' == '\'' and '\\' == '\\' end
#end
assert('Literals Strings Double Quoted', '8.7.6.3.3') do assert('Literals Strings Double Quoted', '8.7.6.3.3') do
a = "abc" a = "abc"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment