From b39d4a6542dfc544361275c9d332df66350f88bf Mon Sep 17 00:00:00 2001 From: yoyo930021 Date: Sun, 28 Aug 2016 10:28:36 +0800 Subject: [PATCH] Need better description for mach subcommands #12402 --- python/servo/testing_commands.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ffc2dd3869e..12581dc780d 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -338,7 +338,7 @@ class MachCommands(CommandBase): return run_globals["run_tests"](tests, verbose) @Command('test-wpt-failure', - description='Run the web platform tests', + description='Run the small test harness that verifies that failures in tests are reported correctly', category='testing') def test_wpt_failure(self): self.ensure_bootstrapped() @@ -351,7 +351,7 @@ class MachCommands(CommandBase): ], env=self.build_env()) @Command('test-wpt', - description='Run the web platform tests', + description='Run the web platform tests that the regular test suite', category='testing', parser=create_parser_wpt) def test_wpt(self, **kwargs): @@ -463,7 +463,7 @@ class MachCommands(CommandBase): return self.jquery_test_runner("update", release, dev) @Command('test-css', - description='Run the web platform tests', + description='Run the css tests', category='testing', parser=create_parser_wpt) def test_css(self, **kwargs): @@ -475,7 +475,7 @@ class MachCommands(CommandBase): return self.wptrunner(run_file, **kwargs) @Command('update-css', - description='Update the web platform tests', + description='Update the css tests', category='testing', parser=updatecommandline.create_parser()) @CommandArgument('--patch', action='store_true', default=False,