diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-10-17 03:58:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 03:58:05 -0500 |
commit | 887507b6f86bf4e763f49f12b48ee94029fc9e13 (patch) | |
tree | 869fb47d932b62ceee96aba4f620ccca9900b34d | |
parent | a71b1e65be0ce40ebc78cf9ec248e7ff41d179ce (diff) | |
parent | eec06798bef2c58c0306153598e6b1eaa0529639 (diff) | |
download | servo-887507b6f86bf4e763f49f12b48ee94029fc9e13.tar.gz servo-887507b6f86bf4e763f49f12b48ee94029fc9e13.zip |
Auto merge of #13798 - bholley:mach_bench, r=Wafflespeanut
Implement ./mach test-unit --bench
Currently there's no way to run rust benchmark tests using mach. We can support it pretty easily, which I found useful when writing performance tests.
r? @Wafflespeanut
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13798)
<!-- Reviewable:end -->
-rw-r--r-- | python/servo/testing_commands.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 208d9b2433b..d1158304bff 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -172,9 +172,11 @@ class MachCommands(CommandBase): description='Run unit tests', category='testing') @CommandArgument('--package', '-p', default=None, help="Specific package to test") + @CommandArgument('--bench', default=False, action="store_true", + help="Run in bench mode") @CommandArgument('test_name', nargs=argparse.REMAINDER, help="Only run tests that match this pattern or file path") - def test_unit(self, test_name=None, package=None): + def test_unit(self, test_name=None, package=None, bench=False): if test_name is None: test_name = [] @@ -228,7 +230,7 @@ class MachCommands(CommandBase): features = self.servo_features() if len(packages) > 0: - args = ["cargo", "test"] + args = ["cargo", "bench" if bench else "test"] for crate in packages: args += ["-p", "%s_tests" % crate] args += test_patterns @@ -239,7 +241,7 @@ class MachCommands(CommandBase): # Run style tests with the testing feature if has_style: - args = ["cargo", "test", "-p", "style_tests", "--features"] + args = ["cargo", "bench" if bench else "test", "-p", "style_tests", "--features"] if features: args += ["%s" % ' '.join(features + ["testing"])] else: |