Title: [153653] branches/safari-537-branch/LayoutTests
Revision
153653
Author
mark....@apple.com
Date
2013-08-02 09:40:58 -0700 (Fri, 02 Aug 2013)

Log Message

Bot greening: changed test to not use test functions not yet available in this branch.

Not reviewed.

* fast/js/script-tests/dfg-make-rope-side-effects.js:
(f):

Modified Paths

Diff

Modified: branches/safari-537-branch/LayoutTests/ChangeLog (153652 => 153653)


--- branches/safari-537-branch/LayoutTests/ChangeLog	2013-08-02 16:02:11 UTC (rev 153652)
+++ branches/safari-537-branch/LayoutTests/ChangeLog	2013-08-02 16:40:58 UTC (rev 153653)
@@ -1,3 +1,12 @@
+2013-08-02  Mark Lam  <mark....@apple.com>
+
+        Bot greening: changed test to not use test functions not yet available in this branch.
+
+        Not reviewed.
+
+        * fast/js/script-tests/dfg-make-rope-side-effects.js:
+        (f):
+
 2013-08-01  Mark Lam  <mark....@apple.com>
 
         Bot greening.  Merge r153629.

Modified: branches/safari-537-branch/LayoutTests/fast/js/script-tests/dfg-make-rope-side-effects.js (153652 => 153653)


--- branches/safari-537-branch/LayoutTests/fast/js/script-tests/dfg-make-rope-side-effects.js	2013-08-02 16:02:11 UTC (rev 153652)
+++ branches/safari-537-branch/LayoutTests/fast/js/script-tests/dfg-make-rope-side-effects.js	2013-08-02 16:40:58 UTC (rev 153653)
@@ -3,7 +3,6 @@
 );
 
 function f(a,b,c,d,e) { return "1"+a+b+c+d+e+"6"; }
-noInline(f);
 var a=new String("2")
 var b = 5;
 var e = false;
@@ -11,7 +10,9 @@
 s=String
 
 var testOutput ="";
-while (!dfgCompiled({f:f}))
+// Run enough times to ensure that f is dfg compiled:
+var i;
+for (i = 0; i < 500; i++)
 	testOutput += f(a,new s(3),k, b, e);
 testOutput += f(a,new s(3),k, b, e);
 testOutput = testOutput.replace(/12345false6/g, "");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to