mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user