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

Fix integer overflow error in mrdb test
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-11-18 19:19:48 +09:00
committed by GitHub
+1 -4
View File
@@ -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