diff options
author | George Roman <george.roman.99@gmail.com> | 2019-07-19 10:14:47 +0300 |
---|---|---|
committer | George Roman <george.roman.99@gmail.com> | 2019-07-20 17:06:50 +0300 |
commit | 1c4a35e22bff7025b23a2204eea412e9786f00c4 (patch) | |
tree | f2c0c8ca355802f87896caed5b77f35a6a4e0eda /python/servo/testing_commands.py | |
parent | 5788e8c050471121c927b597dfa7a06a065e8167 (diff) | |
download | servo-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.py | 2 |
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) |