From 84c8089681a29cdfdae9689bab74dbd293a4589b Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 14 Jan 2015 13:15:19 +0100 Subject: [PATCH] Don't run Servo reftests headless. This simply causes them to time out. --- wptrunner/executors/executorservo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wptrunner/executors/executorservo.py b/wptrunner/executors/executorservo.py index 704b7635bfbfc3..c3cf8ffb8c2695 100644 --- a/wptrunner/executors/executorservo.py +++ b/wptrunner/executors/executorservo.py @@ -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", "-z", "--exit", + self.command = [self.binary, "--cpu", "--hard-fail", "--exit", "--output=%s" % output_path, full_url] timeout = test.timeout * self.timeout_multiplier