aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2017-11-15 12:15:13 -0500
committerJosh Matthews <josh@joshmatthews.net>2017-11-15 12:47:30 -0500
commitc227604a2c79a247011a5d986a943a2ae911bab2 (patch)
tree01e72ba2a8a61b56fbbbb6f465e2a9a2c249bd89 /python/servo/testing_commands.py
parent85fa6409bb699647b4f5e22952538365e87418d7 (diff)
downloadservo-c227604a2c79a247011a5d986a943a2ae911bab2.tar.gz
servo-c227604a2c79a247011a5d986a943a2ae911bab2.zip
Update web-platform-tests to revision 44702f2bc8ea98bc32b5b244f2fe63c6ce66d49d
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 3586433e2f2..1ee8411cb0f 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -71,7 +71,7 @@ def create_parser_wpt():
parser = wptcommandline.create_parser()
parser.add_argument('--release', default=False, action="store_true",
help="Run with a release build of servo")
- parser.add_argument('--chaos', default=False, action="store_true",
+ parser.add_argument('--rr-chaos', default=False, action="store_true",
help="Run under chaos mode in rr until a failure is captured")
parser.add_argument('--pref', default=[], action="append", dest="prefs",
help="Pass preferences to servo")
@@ -471,7 +471,7 @@ class MachCommands(CommandBase):
os.environ["RUST_BACKTRACE"] = "1"
kwargs["debug"] = not kwargs["release"]
- if kwargs.pop("chaos"):
+ if kwargs.pop("rr_chaos"):
kwargs["debugger"] = "rr"
kwargs["debugger_args"] = "record --chaos"
kwargs["repeat_until_unexpected"] = True