Title: [174096] trunk/Tools
- Revision
- 174096
- Author
- [email protected]
- Date
- 2014-09-30 02:45:54 -0700 (Tue, 30 Sep 2014)
Log Message
Skip a JSC test after r174036.
https://bugs.webkit.org/show_bug.cgi?id=137236
Reviewed by Csaba Osztrogonác.
* Scripts/run-_javascript_core-tests:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (174095 => 174096)
--- trunk/Tools/ChangeLog 2014-09-30 03:34:11 UTC (rev 174095)
+++ trunk/Tools/ChangeLog 2014-09-30 09:45:54 UTC (rev 174096)
@@ -1,3 +1,12 @@
+2014-09-30 Martin Hock <[email protected]>
+
+ Skip a JSC test after r174036.
+ https://bugs.webkit.org/show_bug.cgi?id=137236
+
+ Reviewed by Csaba Osztrogonác.
+
+ * Scripts/run-_javascript_core-tests:
+
2014-09-29 Carlos Alberto Lopez Perez <[email protected]>
[GTK] [EFL] Install TestNetscapePlugin apart from the other libs.
Modified: trunk/Tools/Scripts/run-_javascript_core-tests (174095 => 174096)
--- trunk/Tools/Scripts/run-_javascript_core-tests 2014-09-30 03:34:11 UTC (rev 174095)
+++ trunk/Tools/Scripts/run-_javascript_core-tests 2014-09-30 09:45:54 UTC (rev 174096)
@@ -53,17 +53,20 @@
"ecma/Date/15.9.2.2-6.js",
"ecma/Date/15.9.5.31-1.js",
"ecma_3/Date/15.9.5.7.js",
- # function.arguments have been disabled
- "js1_4/Functions/function-001.js",
);
my @testsToSkipOnNonWindows = (
# ecma_3/Date/15.9.5.7.js fails on Mac (but not Windows) https://bugs.webkit.org/show_bug.cgi?id=25161
"ecma_3/Date/15.9.5.7.js",
+
);
-my @testsToSkip;
-@testsToSkip = @testsToSkipOnWindows if isAppleWinWebKit();
+my @testsToSkip = (
+ # function.arguments have been disabled
+ "js1_4/Functions/function-001.js",
+);
+
+@testsToSkip = (@testsToSkip, @testsToSkipOnWindows) if isAppleWinWebKit();
@testsToSkip = (@testsToSkip, @testsToSkipOnNonWindows) if !isAppleWinWebKit();
my $jsDriverArgs = "-L " . join(" ", @testsToSkip) if @testsToSkip;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes