Unverified Commit 15d6e172 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5146 from shuujii/fix-integer-overflow-error-in-mrdb-test

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