Title: [151462] trunk/Tools
- Revision
- 151462
- Author
- [email protected]
- Date
- 2013-06-11 13:03:08 -0700 (Tue, 11 Jun 2013)
Log Message
Add an option to run-webkit-tests to skip java dependency check
https://bugs.webkit.org/show_bug.cgi?id=117516
Reviewed by Andreas Kling.
* Scripts/webkitpy/layout_tests/run_webkit_tests.py:
(parse_args):
* Scripts/webkitpy/port/mac.py:
(MacPort._check_port_build):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (151461 => 151462)
--- trunk/Tools/ChangeLog 2013-06-11 20:02:03 UTC (rev 151461)
+++ trunk/Tools/ChangeLog 2013-06-11 20:03:08 UTC (rev 151462)
@@ -1,3 +1,15 @@
+2013-06-11 Ryosuke Niwa <[email protected]>
+
+ Add an option to run-webkit-tests to skip java dependency check
+ https://bugs.webkit.org/show_bug.cgi?id=117516
+
+ Reviewed by Andreas Kling.
+
+ * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
+ (parse_args):
+ * Scripts/webkitpy/port/mac.py:
+ (MacPort._check_port_build):
+
2013-06-11 Alex Christensen <[email protected]>
https://bugs.webkit.org/show_bug.cgi?id=117514
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py (151461 => 151462)
--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py 2013-06-11 20:02:03 UTC (rev 151461)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py 2013-06-11 20:03:08 UTC (rev 151462)
@@ -196,7 +196,9 @@
optparse.make_option("--nocheck-sys-deps", action=""
default=False,
help="Don't check the system dependencies (themes)"),
-
+ optparse.make_option("--nojava", action=""
+ default=False,
+ help="Don't build java support files"),
]))
option_group_definitions.append(("Testing Options", [
Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (151461 => 151462)
--- trunk/Tools/Scripts/webkitpy/port/mac.py 2013-06-11 20:02:03 UTC (rev 151461)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py 2013-06-11 20:03:08 UTC (rev 151462)
@@ -168,7 +168,7 @@
_log.info("%s unique leaks found!" % unique_leaks)
def _check_port_build(self):
- return self._build_java_test_support()
+ return self.get_option('nojava') or self._build_java_test_support()
def _path_to_webcore_library(self):
return self._build_path('WebCore.framework/Versions/A/WebCore')
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes