Modified: trunk/Tools/ChangeLog (112597 => 112598)
--- trunk/Tools/ChangeLog 2012-03-29 23:09:33 UTC (rev 112597)
+++ trunk/Tools/ChangeLog 2012-03-29 23:16:33 UTC (rev 112598)
@@ -1,5 +1,21 @@
2012-03-29 Dirk Pranke <[email protected]>
+ remove support for junit-style xml output from test-webkitpy
+ https://bugs.webkit.org/show_bug.cgi?id=82279
+
+ Reviewed by Eric Seidel.
+
+ This was added when we were looking into integrating w/ Jenkins
+ rather than buildbot, but I believe that project got shelved, so
+ this is unused. We can always add it back in later as necessary.
+
+ * Scripts/webkitpy/test/main.py:
+ (Tester._parse_args):
+ (Tester._run_tests):
+ * Scritps/webkitpy/thirdparty/__init__.py:
+
+2012-03-29 Dirk Pranke <[email protected]>
+
new-run-webkit-tests: crashes when it fails to decode a stack trace
https://bugs.webkit.org/show_bug.cgi?id=82673
Modified: trunk/Tools/Scripts/webkitpy/test/main.py (112597 => 112598)
--- trunk/Tools/Scripts/webkitpy/test/main.py 2012-03-29 23:09:33 UTC (rev 112597)
+++ trunk/Tools/Scripts/webkitpy/test/main.py 2012-03-29 23:16:33 UTC (rev 112598)
@@ -55,8 +55,6 @@
help='run quietly (errors, warnings, and progress only)'),
parser.add_option('-t', '--timing', action='', default=False,
help='display per-test execution time (implies --verbose)'),
- parser.add_option('-x', '--xml', action='', default=False,
- help='output xUnit-style XML output')
parser.add_option('-v', '--verbose', action='', default=0,
help='verbose output (specify once for individual test results, twice for debug messages)')
parser.add_option('--skip-integrationtests', action='', default=False,
@@ -171,11 +169,7 @@
suites.append(loader.loadTestsFromName(name, None))
test_suite = unittest.TestSuite(suites)
- if self._options.xml:
- from webkitpy.thirdparty.autoinstalled.xmlrunner import XMLTestRunner
- test_runner = XMLTestRunner(output='test-webkitpy-xml-reports')
- else:
- test_runner = TestRunner(self.stream, self._options, loader)
+ test_runner = TestRunner(self.stream, self._options, loader)
_log.debug("Running the tests.")
result = test_runner.run(test_suite)
Modified: trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py (112597 => 112598)
--- trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py 2012-03-29 23:09:33 UTC (rev 112597)
+++ trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py 2012-03-29 23:16:33 UTC (rev 112598)
@@ -84,8 +84,6 @@
self._install_pywebsocket()
elif '.buildbot' in fullname:
self._install_buildbot()
- elif '.xmlrunner' in fullname:
- self._install_xmlrunner()
def _install_mechanize(self):
self._install("http://pypi.python.org/packages/source/m/mechanize/mechanize-0.2.5.tar.gz",
@@ -136,10 +134,6 @@
installer.install(url=""
url_subpath="pywebsocket-0.7.2/src/mod_pywebsocket")
- def _install_xmlrunner(self):
- self._install("http://pypi.python.org/packages/source/u/unittest-xml-reporting/unittest-xml-reporting-1.0.3.tar.gz#md5=cebf83281b0753b5d42bad38c91fd4d6",
- "unittest-xml-reporting-1.0.3/src/xmlrunner")
-
def _install(self, url, url_subpath):
installer = AutoInstaller(target_dir=_AUTOINSTALLED_DIR)
installer.install(url="" url_subpath=url_subpath)