Reduce execution time for "let" and "const" tests
https://bugs.webkit.org/show_bug.cgi?id=147291

Reviewed by Geoffrey Garen.

We don't need to loop so many times for things that will not make it
into the DFG.  Also, we can loop a lot less for almost all the tests
because they're mostly testing the bytecode generator.

* tests/stress/const-and-with-statement.js:
* tests/stress/const-exception-handling.js:
* tests/stress/const-loop-semantics.js:
* tests/stress/const-not-strict-mode.js:
* tests/stress/const-semantics.js:
* tests/stress/const-tdz.js:
* tests/stress/lexical-let-and-with-statement.js:
* tests/stress/lexical-let-exception-handling.js:
(assert):
* tests/stress/lexical-let-loop-semantics.js:
(assert):
(shouldThrowTDZ):
(.):
* tests/stress/lexical-let-not-strict-mode.js:
* tests/stress/lexical-let-semantics.js:
(.):
* tests/stress/lexical-let-tdz.js:
(shouldThrowTDZ):
(.):


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@187460 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/JavaScriptCore/tests/stress/const-exception-handling.js b/Source/JavaScriptCore/tests/stress/const-exception-handling.js
index f22ab12..da43430 100644
--- a/Source/JavaScriptCore/tests/stress/const-exception-handling.js
+++ b/Source/JavaScriptCore/tests/stress/const-exception-handling.js
@@ -14,7 +14,7 @@
 // Tests
 
 
-const NUM_LOOPS = 10000;
+const NUM_LOOPS = 100;
 
 ;(function () {
 function foo() {