Skip to content

Commit

Permalink
Use headless compositor for Servo
Browse files Browse the repository at this point in the history
Fixes #63.
  • Loading branch information
jdm committed Jan 8, 2015
1 parent 7d8509e commit b187651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wptrunner/executors/executorservo.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def run_test(self, test):
self.result_data = None
self.result_flag = threading.Event()

self.command = [self.binary, "--cpu", "--hard-fail",
self.command = [self.binary, "--cpu", "--hard-fail", "-z",
urlparse.urljoin(self.http_server_url, test.url)]

if self.debug_args:
Expand Down Expand Up @@ -118,7 +118,7 @@ def run_test(self, test):
full_url = urlparse.urljoin(self.http_server_url, url)

with TempFilename(self.tempdir) as output_path:
self.command = [self.binary, "--cpu", "--hard-fail", "--exit",
self.command = [self.binary, "--cpu", "--hard-fail", "-z", "--exit",
"--output=%s" % output_path, full_url]

timeout = test.timeout * self.timeout_multiplier
Expand Down

0 comments on commit b187651

Please sign in to comment.