Commit f50cde99 authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Fix integer overflow error in mrdb test

parent 3d8350f9
......@@ -63,10 +63,7 @@ assert('mruby-bin-debugger(mrdb) command line') do
# ruby source
src = "foo = 'foo'\n"
str = ""
103.times {
str += "1234567890"
}
str = ":#{'abcdefghij' * 103}"
cmd = "p a=#{str}"
# test case
......
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