Skip to content

Commit

Permalink
Run Servo with CPU rendering
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mbrubeck committed Sep 24, 2014
1 parent 6782a4c commit f7948dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wptrunner/executors/executorservo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f7948dd

Please sign in to comment.