aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorGeorge Roman <george.roman.99@gmail.com>2019-07-19 10:14:47 +0300
committerGeorge Roman <george.roman.99@gmail.com>2019-07-20 17:06:50 +0300
commit1c4a35e22bff7025b23a2204eea412e9786f00c4 (patch)
treef2c0c8ca355802f87896caed5b77f35a6a4e0eda /python/servo/testing_commands.py
parent5788e8c050471121c927b597dfa7a06a065e8167 (diff)
downloadservo-1c4a35e22bff7025b23a2204eea412e9786f00c4.tar.gz
servo-1c4a35e22bff7025b23a2204eea412e9786f00c4.zip
Add a HOST_FILE env variable and fix the wdspec setup errors that it causes
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 6aeb176c040..afd8ffcda6d 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -396,7 +396,7 @@ class MachCommands(CommandBase):
def _test_wpt(self, android=False, **kwargs):
self.set_run_env(android)
hosts_file_path = path.join(self.context.topdir, 'tests', 'wpt', 'hosts')
- os.environ["hosts_file_path"] = hosts_file_path
+ os.environ["HOST_FILE"] = hosts_file_path
run_file = path.abspath(path.join(self.context.topdir, "tests", "wpt", "run.py"))
return self.wptrunner(run_file, **kwargs)