Skip to content

Commit

Permalink
adding 2 new default arguments when running make check-wpt so that it…
Browse files Browse the repository at this point in the history
… does not fail saying KeyError: 'debug_args' or KeyError: 'interactive'
  • Loading branch information
Pierre Louis Aublin committed Jul 11, 2014
1 parent 8cf004e commit 7f62ec6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/wpt/run.py
Expand Up @@ -34,6 +34,8 @@ def set_defaults(args):
args.include = args.include if args.include else ["/dom", "/XMLHttpRequest"]
args.binary = args.binary if args.binary else os.path.join(servo_root, "build", "servo")
args.product = "servo"
args.debug_args = ""
args.interactive = ""
return vars(args)

def main():
Expand Down

0 comments on commit 7f62ec6

Please sign in to comment.