Bug 1352351 - Enable --run-by-dir for web-platform-tests, r=ato

MozReview-Commit-ID: 7fh1LKm683p

--HG--
extra : rebase_source : 2bb7195f084434dfe1448e8859440e384a3552d5
This commit is contained in:
James Graham 2017-02-14 19:21:01 +00:00
parent 3264854ac3
commit 28170f6a78

View File

@ -147,7 +147,8 @@ class WebPlatformTest(TestingMixin, MercurialScript, BlobUploadMixin, CodeCovera
"--binary=%s" % self.binary_path, "--binary=%s" % self.binary_path,
"--symbols-path=%s" % self.query_symbols_url(), "--symbols-path=%s" % self.query_symbols_url(),
"--stackwalk-binary=%s" % self.query_minidump_stackwalk(), "--stackwalk-binary=%s" % self.query_minidump_stackwalk(),
"--stackfix-dir=%s" % os.path.join(dirs["abs_test_install_dir"], "bin")] "--stackfix-dir=%s" % os.path.join(dirs["abs_test_install_dir"], "bin"),
"--run-by-dir=3"]
for test_type in c.get("test_type", []): for test_type in c.get("test_type", []):
cmd.append("--test-type=%s" % test_type) cmd.append("--test-type=%s" % test_type)