Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: LayoutTests/fast/js/script-tests/excessive-comma-usage.js

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove unused script-tests as well Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/js/script-tests/excessive-comma-usage.js
diff --git a/LayoutTests/fast/js/script-tests/excessive-comma-usage.js b/LayoutTests/fast/js/script-tests/excessive-comma-usage.js
deleted file mode 100644
index b4d95d65968c6628718c5832ec39c7fdfa89e266..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/script-tests/excessive-comma-usage.js
+++ /dev/null
@@ -1,20 +0,0 @@
-description("Test that we can handle excessively large initializer lists");
-
-var initializerTestString = "var a=0";
-for (var i = 0; i < 50000; i++)
- initializerTestString += ",a"+i+"="+i;
-initializerTestString += ";return true;";
-
-var declarationTestString = "var a";
-for (var i = 0; i < 50000; i++)
- declarationTestString += ",a"+i;
-declarationTestString += ";return true;";
-
-var commaExpressionTestString = "1";
-for (var i = 0; i < 50000; i++)
- commaExpressionTestString += ",1";
-commaExpressionTestString += ";return true;";
-
-shouldBeTrue("new Function(initializerTestString)()");
-shouldBeTrue("new Function(declarationTestString)()");
-shouldBeTrue("new Function(commaExpressionTestString)()");
« no previous file with comments | « LayoutTests/fast/js/script-tests/exception-registerfile-shrink.js ('k') | LayoutTests/fast/js/script-tests/function-apply.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698