mirror of
https://github.com/servo/servo.git
synced 2025-07-27 01:00:41 +01:00
Remove dead code that used to support the legacy reftest framework.
This commit is contained in:
parent
aac2da75f4
commit
a5ccebff5a
3 changed files with 0 additions and 48 deletions
|
@ -353,23 +353,6 @@ class MachCommands(CommandBase):
|
|||
|
||||
return ret
|
||||
|
||||
@Command('build-tests',
|
||||
description='Build the Servo test suites',
|
||||
category='build')
|
||||
@CommandArgument('--jobs', '-j',
|
||||
default=None,
|
||||
help='Number of jobs to run in parallel')
|
||||
@CommandArgument('--release', default=False, action="store_true",
|
||||
help="Build tests with release mode")
|
||||
def build_tests(self, jobs=None, verbose=False, release=False):
|
||||
self.ensure_bootstrapped()
|
||||
args = ["cargo", "test", "--no-run"]
|
||||
if release:
|
||||
args += ["--release"]
|
||||
return call(
|
||||
args,
|
||||
env=self.build_env(), cwd=self.servo_crate(), verbose=verbose)
|
||||
|
||||
@Command('clean',
|
||||
description='Clean the build directory.',
|
||||
category='build')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue