Bug 1319028 - Enable tracing output for Firefox-UI jobs. draft
authorHenrik Skupin <mail@hskupin.info>
Tue, 22 Nov 2016 18:08:25 +0100
changeset 442525 6818c3de2217704b1273a9f3a255e7761e8480c7
parent 442068 0534254e9a40b4bade2577c631fe4cfa0b5db41d
child 537810 83760cb37d81e814bf6307d3b6a04401319e1ebe
push id36716
push userbmo:hskupin@gmail.com
push dateTue, 22 Nov 2016 17:09:00 +0000
bugs1319028
milestone53.0a1
Bug 1319028 - Enable tracing output for Firefox-UI jobs. MozReview-Commit-ID: 3KsBKH9WVfR
testing/mozharness/mozharness/mozilla/testing/firefox_ui_tests.py
--- a/testing/mozharness/mozharness/mozilla/testing/firefox_ui_tests.py
+++ b/testing/mozharness/mozharness/mozilla/testing/firefox_ui_tests.py
@@ -211,16 +211,19 @@ class FirefoxUITests(TestingMixin, VCSTo
 
             # logging options
             '--gecko-log=-',  # output from the gecko process redirected to stdout
             '--log-raw=-',  # structured log for output parser redirected to stdout
 
             # additional reports helpful for Jenkins and inpection via Treeherder
             '--log-html', os.path.join(dirs['abs_blob_upload_dir'], 'report.html'),
             '--log-xunit', os.path.join(dirs['abs_blob_upload_dir'], 'report.xml'),
+
+            # Enable tracing output to log transmission protocol
+            '-vv',
         ]
 
         # Collect all pass-through harness options to the script
         cmd.extend(self.query_harness_args())
 
         # Translate deprecated --e10s flag
         if not self.config.get('e10s'):
             cmd.append('--disable-e10s')