From f7948dd54fbb25e28f0bf03a20c1e3beb14954a2 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 24 Sep 2014 15:12:18 -0700 Subject: [PATCH] Run Servo with CPU rendering This disables Servo's GPU rendering path. Running with CPU rendering allows Servo to run on a wider range of platforms, including headless servers. This is how we (the Servo team) run Servo's own automated tests on Linux. --- 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 b4ce7676e27988..7be3a999f73ad2 100644 --- a/wptrunner/executors/executorservo.py +++ b/wptrunner/executors/executorservo.py @@ -25,7 +25,7 @@ def run_test(self, test): self.result_data = None self.result_flag = threading.Event() - self.command = [self.binary, "--hard-fail", + self.command = [self.binary, "--cpu", "--hard-fail", urlparse.urljoin(self.http_server_url, test.url)] if self.debug_args: