aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2015-08-30 17:04:09 -0400
committerJosh Matthews <josh@joshmatthews.net>2015-08-30 17:04:09 -0400
commit146118834948dd9c4ff6dbc6a94990633a97b84c (patch)
tree0108ba015b6364b317087eb0f2268279f15ef261
parent606bad91b0fe6f2e221fb26ef6c4c7111f0ef38a (diff)
downloadservo-146118834948dd9c4ff6dbc6a94990633a97b84c.tar.gz
servo-146118834948dd9c4ff6dbc6a94990633a97b84c.zip
Revert "Allow wptrunner to enable prefs for Servo."
This reverts commit 0d6f410a3ffe7448bbd7d89690bee5991f95be7d.
-rw-r--r--tests/wpt/harness/wptrunner/executors/executorservo.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/wpt/harness/wptrunner/executors/executorservo.py b/tests/wpt/harness/wptrunner/executors/executorservo.py
index 1172a97358f..b0e0eaeda27 100644
--- a/tests/wpt/harness/wptrunner/executors/executorservo.py
+++ b/tests/wpt/harness/wptrunner/executors/executorservo.py
@@ -65,10 +65,6 @@ class ServoTestharnessExecutor(ProcessTestExecutor):
args = ["--cpu", "--hard-fail", "-u", "Servo/wptrunner", "-z", self.test_url(test)]
for stylesheet in self.browser.user_stylesheets:
args += ["--user-stylesheet", stylesheet]
-
- for pref in test.environment.get('prefs', {}):
- args += ["--pref", pref]
-
debug_args, command = browser_command(self.binary, args, self.debug_info)
self.command = command
@@ -199,8 +195,6 @@ class ServoRefTestExecutor(ProcessTestExecutor):
"--output=%s" % output_path, full_url]
for stylesheet in self.browser.user_stylesheets:
self.command += ["--user-stylesheet", stylesheet]
- for pref in test.environment.get('prefs', {}):
- self.command += ["--pref", pref]
env = os.environ.copy()
env["HOST_FILE"] = self.hosts_path