[test] Shorten excessive webkit test.
authormachenbach <machenbach@chromium.org>
Tue, 28 Jul 2015 10:17:18 +0000 (03:17 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 28 Jul 2015 10:17:29 +0000 (10:17 +0000)
BUG=

Review URL: https://codereview.chromium.org/1257583005

Cr-Commit-Position: refs/heads/master@{#29895}

test/webkit/fast/js/excessive-comma-usage-expected.txt
test/webkit/fast/js/excessive-comma-usage.js

index 2460768..a86a1e8 100644 (file)
@@ -28,7 +28,7 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 PASS new Function(initializerTestString)() is true
 PASS new Function(declarationTestString)() is true
-FAIL new Function(commaExpressionTestString)() should be true. Threw exception RangeError: Maximum call stack size exceeded
+PASS new Function(commaExpressionTestString)() is true
 PASS successfullyParsed is true
 
 TEST COMPLETE
index d30ff6d..414b29b 100644 (file)
 description("Test that we can handle excessively large initializer lists");
 
 var initializerTestString = "var a=0";
-for (var i = 0; i < 50000; i++)
+for (var i = 0; i < 5000; i++)
     initializerTestString += ",a"+i+"="+i;
 initializerTestString += ";return true;";
 
 var declarationTestString = "var a";
-for (var i = 0; i < 50000; i++)
+for (var i = 0; i < 5000; i++)
     declarationTestString += ",a"+i;
 declarationTestString += ";return true;";
 
 var commaExpressionTestString = "1";
-for (var i = 0; i < 50000; i++)
+for (var i = 0; i < 5000; i++)
     commaExpressionTestString += ",1";
 commaExpressionTestString += ";return true;";