Title: [179176] trunk/Source/_javascript_Core
Revision
179176
Author
[email protected]
Date
2015-01-27 01:26:56 -0800 (Tue, 27 Jan 2015)

Log Message

[Win] Unreviewed gardening, skip failing tests.

* tests/exceptionFuzz.yaml: Skip exception fuzz tests due to bug140928.
* tests/mozilla/mozilla-tests.yaml: Skip ecma/Date/15.9.5.28-1.js due to bug140927.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (179175 => 179176)


--- trunk/Source/_javascript_Core/ChangeLog	2015-01-27 08:19:53 UTC (rev 179175)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-01-27 09:26:56 UTC (rev 179176)
@@ -1,3 +1,10 @@
+2015-01-27  Csaba Osztrogonác  <[email protected]>
+
+        [Win] Unreviewed gardening, skip failing tests.
+
+        * tests/exceptionFuzz.yaml: Skip exception fuzz tests due to bug140928.
+        * tests/mozilla/mozilla-tests.yaml: Skip ecma/Date/15.9.5.28-1.js due to bug140927.
+
 2015-01-26  Csaba Osztrogonác  <[email protected]>
 
         [Win] Enable JSC stress tests by default

Modified: trunk/Source/_javascript_Core/tests/exceptionFuzz.yaml (179175 => 179176)


--- trunk/Source/_javascript_Core/tests/exceptionFuzz.yaml	2015-01-27 08:19:53 UTC (rev 179175)
+++ trunk/Source/_javascript_Core/tests/exceptionFuzz.yaml	2015-01-27 09:26:56 UTC (rev 179176)
@@ -22,4 +22,9 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 - path: exceptionFuzz
-  cmd: runExceptionFuzz
+  cmd: |
+      if ($hostOS == "windows")
+          skip
+      else
+          runExceptionFuzz
+      end

Modified: trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml (179175 => 179176)


--- trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-01-27 08:19:53 UTC (rev 179175)
+++ trunk/Source/_javascript_Core/tests/mozilla/mozilla-tests.yaml	2015-01-27 09:26:56 UTC (rev 179176)
@@ -338,7 +338,12 @@
 - path: ecma/Date/15.9.5.27-1.js
   cmd: defaultRunMozillaTest :normal, "../shell.js"
 - path: ecma/Date/15.9.5.28-1.js
-  cmd: defaultRunMozillaTest :normal, "../shell.js"
+  cmd: |
+      if ($hostOS == "windows")
+          skip
+      else
+          defaultRunMozillaTest :normal, "../shell.js"
+      end
 - path: ecma/Date/15.9.5.29-1.js
   cmd: defaultRunMozillaTest :normal, "../shell.js"
 - path: ecma/Date/15.9.5.3-1-n.js
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to