Bug 1025066 - Enable web-platform-tests script to access the certutils binary, r=armenzg
--- a/scripts/web_platform_tests.py
+++ b/scripts/web_platform_tests.py
@@ -134,28 +134,30 @@ class WebPlatformTest(TestingMixin, Merc
if val:
base_cmd.append("--%s=%s" % (opt.replace("_", "-"), val))
options = list(c.get("options", [])) + list(self.tree_config["options"])
str_format_values = {
'binary_path': self.binary_path,
'test_path': dirs["abs_wpttest_dir"],
+ 'test_install_path': dirs["abs_test_install_dir"],
'abs_app_dir': abs_app_dir,
'abs_work_dir': dirs["abs_work_dir"]
}
opt_cmd = [item % str_format_values for item in options]
return base_cmd + opt_cmd
def download_and_extract(self):
self.install_minidump_stackwalk()
super(WebPlatformTest, self).download_and_extract(
- target_unzip_dirs=["config/*",
+ target_unzip_dirs=["bin/*",
+ "config/*",
"mozbase/*",
"marionette/*",
"web-platform/*"])
def run_tests(self):
dirs = self.query_abs_dirs()
cmd = self._query_cmd()