Diff
Modified: trunk/LayoutTests/ChangeLog (179164 => 179165)
--- trunk/LayoutTests/ChangeLog 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/LayoutTests/ChangeLog 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,13 @@
+2015-01-26 Csaba Osztrogonác <o...@webkit.org>
+
+ [Win] Enable JSC stress tests by default
+ https://bugs.webkit.org/show_bug.cgi?id=128307
+
+ Reviewed by Brent Fulgham.
+
+ * js/script-tests/date-constructor.js: Skipped on Windows.
+ * js/script-tests/sort-stability.js: Skipped on Windows.
+
2015-01-26 Brent Fulgham <bfulg...@apple.com>
[Win] More test gardening.
Modified: trunk/LayoutTests/js/script-tests/date-constructor.js (179164 => 179165)
--- trunk/LayoutTests/js/script-tests/date-constructor.js 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/LayoutTests/js/script-tests/date-constructor.js 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,5 @@
+//@ skip if $hostOS == "windows"
+
description(
'This test case tests the Date constructor. ' +
'In particular, it tests many cases of creating a Date from another Date ' +
Modified: trunk/LayoutTests/js/script-tests/sort-stability.js (179164 => 179165)
--- trunk/LayoutTests/js/script-tests/sort-stability.js 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/LayoutTests/js/script-tests/sort-stability.js 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,5 @@
+//@ skip if $hostOS == "windows"
+
description(
"This tests that sort() is a stable sort."
);
Modified: trunk/Source/_javascript_Core/ChangeLog (179164 => 179165)
--- trunk/Source/_javascript_Core/ChangeLog 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/Source/_javascript_Core/ChangeLog 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,13 @@
+2015-01-26 Csaba Osztrogonác <o...@webkit.org>
+
+ [Win] Enable JSC stress tests by default
+ https://bugs.webkit.org/show_bug.cgi?id=128307
+
+ Reviewed by Brent Fulgham.
+
+ * tests/mozilla/mozilla-tests.yaml: Skipped on Windows.
+ * tests/stress/ftl-arithcos.js: Skipped on Windows.
+
2015-01-26 Ryosuke Niwa <rn...@webkit.org>
Parse a function _expression_ as a primary _expression_
Modified: trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml (179164 => 179165)
--- trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml 2015-01-27 05:01:08 UTC (rev 179165)
@@ -348,7 +348,12 @@
- path: ecma/Date/15.9.5.30-1.js
cmd: defaultRunMozillaTest :normal, "../shell.js"
- path: ecma/Date/15.9.5.31-1.js
- cmd: defaultRunMozillaTest :normal, "../shell.js"
+ cmd: |
+ if ($hostOS == "windows")
+ skip
+ else
+ defaultRunMozillaTest :normal, "../shell.js"
+ end
- path: ecma/Date/15.9.5.32-1.js
cmd: defaultRunMozillaTest :normal, "../shell.js"
- path: ecma/Date/15.9.5.33-1.js
@@ -1532,7 +1537,12 @@
- path: ecma_3/Date/15.9.5.5.js
cmd: defaultRunMozillaTest :normal, "../shell.js", "shell.js"
- path: ecma_3/Date/15.9.5.6.js
- cmd: defaultRunMozillaTest :normal, "../shell.js", "shell.js"
+ cmd: |
+ if ($hostOS == "windows")
+ skip
+ else
+ defaultRunMozillaTest :normal, "../shell.js"
+ end
- path: ecma_3/Date/15.9.5.7.js
cmd: defaultRunMozillaTest :skip, "../shell.js", "shell.js"
- path: ecma_3/Exceptions/15.11.1.1.js
Modified: trunk/Source/_javascript_Core/tests/stress/ftl-arithcos.js (179164 => 179165)
--- trunk/Source/_javascript_Core/tests/stress/ftl-arithcos.js 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/Source/_javascript_Core/tests/stress/ftl-arithcos.js 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,5 @@
+//@ skip if $hostOS == "windows"
+
function foo(x) {
return Math.cos(x);
}
Modified: trunk/Tools/ChangeLog (179164 => 179165)
--- trunk/Tools/ChangeLog 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/Tools/ChangeLog 2015-01-27 05:01:08 UTC (rev 179165)
@@ -1,3 +1,12 @@
+2015-01-26 Csaba Osztrogonác <o...@webkit.org>
+
+ [Win] Enable JSC stress tests by default
+ https://bugs.webkit.org/show_bug.cgi?id=128307
+
+ Reviewed by Brent Fulgham.
+
+ * Scripts/run-_javascript_core-tests:
+
2015-01-26 Simon Fraser <simon.fra...@apple.com>
[iOS] Remove the various aliases for --ios-simulator (--sim, --simulator, --ios-sim) in
Modified: trunk/Tools/Scripts/run-_javascript_core-tests (179164 => 179165)
--- trunk/Tools/Scripts/run-_javascript_core-tests 2015-01-27 04:50:07 UTC (rev 179164)
+++ trunk/Tools/Scripts/run-_javascript_core-tests 2015-01-27 05:01:08 UTC (rev 179165)
@@ -52,9 +52,7 @@
my $runTestAPI = isAppleMacWebKit() || isAppleWinWebKit() || isWinCairo();
-# FIXME: run-jsc-stress-tests should be ported to other platforms.
-# https://bugs.webkit.org/show_bug.cgi?id=120809
-my $runJSCStress = !isAppleWinWebKit();
+my $runJSCStress = 1;
my $enableFTL = isAppleWebKit();
my $createTarball = 0;