Title: [154530] trunk/LayoutTests
- Revision
- 154530
- Author
- [email protected]
- Date
- 2013-08-23 16:15:03 -0700 (Fri, 23 Aug 2013)
Log Message
Rebaseline after r154518. Also fix the test to expect "0" instead of "-0".
Reviewed by Gavin Barraclough.
* fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt:
* fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (154529 => 154530)
--- trunk/LayoutTests/ChangeLog 2013-08-23 23:00:38 UTC (rev 154529)
+++ trunk/LayoutTests/ChangeLog 2013-08-23 23:15:03 UTC (rev 154530)
@@ -1,3 +1,12 @@
+2013-08-23 Ryosuke Niwa <[email protected]>
+
+ Rebaseline after r154518. Also fix the test to expect "0" instead of "-0".
+
+ Reviewed by Gavin Barraclough.
+
+ * fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt:
+ * fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js:
+
2013-08-23 Jer Noble <[email protected]>
REGRESSION (r150516): Media controls are messed up on right-to-left webpages
@@ -1864,8 +1873,7 @@
* fast/js/exception-properties-expected.txt:
* fast/js/script-tests/exception-properties.js:
- Update test expectations.
-2
-013-08-22 Anton Obzhirov <[email protected]>
+2013-08-22 Anton Obzhirov <[email protected]>
[CSSRegions] Min-width and max-width for a region should support values other than length
https://bugs.webkit.org/show_bug.cgi?id=115248
Modified: trunk/LayoutTests/fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt (154529 => 154530)
--- trunk/LayoutTests/fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt 2013-08-23 23:00:38 UTC (rev 154529)
+++ trunk/LayoutTests/fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt 2013-08-23 23:15:03 UTC (rev 154530)
@@ -3,7 +3,7 @@
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-FAIL foo(0, 0, 0, -1) should be 0. Was 0.
+PASS foo(0, 0, 0, -1) is 0
PASS foo(0, 0, 1, -1) is -1
PASS foo(0, 0, 2, -1) is -2
PASS foo(0, 0, 3, -1) is -3
Modified: trunk/LayoutTests/fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js (154529 => 154530)
--- trunk/LayoutTests/fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js 2013-08-23 23:00:38 UTC (rev 154529)
+++ trunk/LayoutTests/fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js 2013-08-23 23:15:03 UTC (rev 154530)
@@ -7,5 +7,5 @@
}
for (var i = 0; i < 100; ++i)
- shouldBe("foo(0, 0, " + i + ", -1)", "-" + i);
+ shouldBe("foo(0, 0, " + i + ", -1)", (i ? "-" : "") + i);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes