aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-06-28 11:03:41 +0200
committerSimon Sapin <simon.sapin@exyr.org>2019-07-04 18:16:44 +0200
commit5cabcd5268a802b807a9f876c472b83467d3c093 (patch)
tree8222a59bef16be812a4bf8c42bf0f19bfac9647a /python/servo/testing_commands.py
parent2b01c26aa58af7ff8f5ee1c17d8294ed4dad8620 (diff)
downloadservo-5cabcd5268a802b807a9f876c472b83467d3c093.tar.gz
servo-5cabcd5268a802b807a9f876c472b83467d3c093.zip
Add `--layout-2020` to `./mach test-wpt` and `./mach update-wpt`
… with separate metadata (expected results) and include manifest.
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 57676377a7c..6aeb176c040 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -72,6 +72,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('--always-succeed', default=False, action="store_true",
help="Always yield exit code of zero")
return parser