Title: [200632] trunk/Source/_javascript_Core
Revision
200632
Author
sbar...@apple.com
Date
2016-05-10 11:56:33 -0700 (Tue, 10 May 2016)

Log Message

Make super-property-access.js test run for less time because it was timing out in debug builds.

Rubber stamped by Filip Pizlo.

* tests/stress/super-property-access.js:
(test):
(test.value):
(test.foo):
(test.B.prototype.bar):
(test.B):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (200631 => 200632)


--- trunk/Source/_javascript_Core/ChangeLog	2016-05-10 18:34:52 UTC (rev 200631)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-05-10 18:56:33 UTC (rev 200632)
@@ -1,3 +1,16 @@
+2016-05-10  Saam barati  <sbar...@apple.com>
+
+        Make super-property-access.js test run for less time because it was timing out in debug builds.
+
+        Rubber stamped by Filip Pizlo.
+
+        * tests/stress/super-property-access.js:
+        (test):
+        (test.value):
+        (test.foo):
+        (test.B.prototype.bar):
+        (test.B):
+
 2016-05-10  Csaba Osztrogonác  <o...@webkit.org>
 
         [JSC] Fix the !ENABLE(DFG_JIT) build

Modified: trunk/Source/_javascript_Core/tests/stress/super-property-access.js (200631 => 200632)


--- trunk/Source/_javascript_Core/tests/stress/super-property-access.js	2016-05-10 18:34:52 UTC (rev 200631)
+++ trunk/Source/_javascript_Core/tests/stress/super-property-access.js	2016-05-10 18:56:33 UTC (rev 200632)
@@ -43,7 +43,7 @@
     for (let i = 0; i < 1000; i++) {
         assert(arr[i].value === i);
     }
-}, 10);
+}, 2);
 
 test(function() {
     function value() { return 'value'; }
@@ -163,7 +163,7 @@
         assert(arr[i].funcBracket(i*2) === i + i*2);
     }
 
-}, 10);
+}, 2);
 
 
 test(function() {
@@ -280,7 +280,7 @@
         assert(arr[i].funcBracket(i*2) === i + i*2);
     }
 
-}, 10);
+}, 2);
 
 test(function() {
     function foo() { return 'foo'; }
@@ -317,7 +317,7 @@
     for (let i = 0; i < 1000; i++) {
         assert(b.index(i) === i);
     }
-}, 50);
+}, 2);
 
 test(function() {
     let obj = {};
@@ -360,7 +360,7 @@
         assert(obj[1] === 'x')
         assert(obj[2] === 'y')
     }
-}, 1000);
+}, 100);
 
 test(function() {
     function foo() { return 'foo'; }
@@ -393,7 +393,7 @@
         assert(obj[1] === 'x')
         assert(obj[2] === 'y')
     }
-}, 1000);
+}, 100);
 
 test(function() {
     class A {
@@ -424,7 +424,7 @@
         assert(obj[1] === 'x')
         assert(obj[2] === 'y')
     }
-}, 1000);
+}, 100);
 
 test(function() {
     function foo() { return 'foo'; }
@@ -456,7 +456,7 @@
         assert(obj[1] === 'x')
         assert(obj[2] === 'y')
     }
-}, 1000);
+}, 100);
 
 test(function() {
     class A {
@@ -486,7 +486,7 @@
     for (let i = 0; i < 1000; i++) {
         assert(arr[i].foo === i);
     }
-}, 100);
+}, 10);
 
 test(function() {
     function foo() { return 'foo'; }
@@ -518,7 +518,7 @@
     for (let i = 0; i < 1000; i++) {
         assert(arr[i].foo === i);
     }
-}, 100);
+}, 10);
 
 test(function() {
     class A {
@@ -545,12 +545,12 @@
             return super.apply({}, [10, 20]);
         }
     }
-    for (let i = 0; i < 100; i++) {
+    for (let i = 0; i < 1000; i++) {
         let b = new B;
         assert(b.foo() === 'call');
         assert(b.bar() === 'apply');
     }
-});
+}, 2);
 
 test(function() {
     class A {
@@ -583,4 +583,4 @@
         assert(r[1].length === 1);
         assert(r[1][0] === i);
     }
-});
+}, 10);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to