Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

execute wpt tests with experimental flag #7385

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

execute wpt tests with experimental flag

  • Loading branch information
paulrouget committed Aug 26, 2015
commit 9971c9391a2a3c303a71f3ce901837e82ac63ee8
@@ -62,7 +62,7 @@ def do_test(self, test):
self.result_data = None
self.result_flag = threading.Event()

args = ["--cpu", "--hard-fail", "-u", "Servo/wptrunner", "-z", self.test_url(test)]
args = ["--cpu", "--hard-fail", "-u", "Servo/wptrunner", "-z", "-e", self.test_url(test)]
for stylesheet in self.browser.user_stylesheets:
args += ["--user-stylesheet", stylesheet]
debug_args, command = browser_command(self.binary, args, self.debug_info)
@@ -190,7 +190,7 @@ def screenshot(self, test):
full_url = self.test_url(test)

with TempFilename(self.tempdir) as output_path:
self.command = [self.binary, "--cpu", "--hard-fail", "--exit",
self.command = [self.binary, "--cpu", "--hard-fail", "--exit", "-e",
"-u", "Servo/wptrunner", "-Z", "disable-text-aa",
"--output=%s" % output_path, full_url]
for stylesheet in self.browser.user_stylesheets:
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.