Index: test/mjsunit/es6/tail-call-megatest.js |
diff --git a/test/mjsunit/es6/tail-call-megatest.js b/test/mjsunit/es6/tail-call-megatest.js |
index 3d2ecb8daa3884a02287bac12b2e25e53d289fdd..a3b5cecbe0a2add066a42f1922d42d33c6e4dcd8 100644 |
--- a/test/mjsunit/es6/tail-call-megatest.js |
+++ b/test/mjsunit/es6/tail-call-megatest.js |
@@ -25,10 +25,11 @@ function checkStackTrace(expected) { |
var CAN_INLINE_COMMENT = "// Let it be inlined."; |
var DONT_INLINE_COMMENT = (function() { |
- var line = "// Don't inline. Don't inline. Don't inline. Don't inline."; |
- for (var i = 0; i < 4; i++) { |
- line += "\n " + line; |
+ var line = "1"; |
+ for (var i = 0; i < 200; ++i) { |
+ line += "," + i; |
} |
+ line += ";\n"; |
return line; |
})(); |