diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-04-07 11:24:14 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-04-07 11:24:14 +0200 |
commit | f7168282a1c034b4ff0caee37f97d4b20155f455 (patch) | |
tree | 137a81a2be6168b154241bb9d74ea827e735a3c6 /python/servo/testing_commands.py | |
parent | cfef75c99b89193bd82d44a6dffc35119ce7f8d0 (diff) | |
download | servo-f7168282a1c034b4ff0caee37f97d4b20155f455.tar.gz servo-f7168282a1c034b4ff0caee37f97d4b20155f455.zip |
Have all mach command accept "--with-layout-2020" and "--layout-2020"
Some command accepted one and some the other. This changes makes them
all accept both so it's no longer necessary to remember which uses
which.
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 0cb20c0127f..9818c5ab20e 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -76,8 +76,8 @@ def create_parser_wpt(): 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") - parser.add_argument('--layout-2020', default=False, action="store_true", - help="Use expected results for the 2020 layout engine") + parser.add_argument('--layout-2020', '--with-layout-2020', default=False, + action="store_true", help="Use expected results for the 2020 layout engine") parser.add_argument('--log-servojson', action="append", type=mozlog.commandline.log_file, help="Servo's JSON logger of unexpected results") parser.add_argument('--always-succeed', default=False, action="store_true", |