Auto merge of #10148 - malayaleecoder:master, r=Manishearth

Remove test-ref command from testing_commands.py. Fixes #10125

Tries to fix #10125

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10148)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-03-24 04:10:20 +05:30
commit 5886493fb0

View file

@ -270,15 +270,6 @@ class MachCommands(CommandBase):
if result != 0:
return result
@Command('test-ref',
description='Run the reference tests',
category='testing')
@CommandArgument('params', default=None, nargs=argparse.REMAINDER)
def test_ref(self, params=None):
print("Ref tests have been replaced by web-platform-tests under "
"tests/wpt/mozilla/.")
return 0
@Command('test-content',
description='Run the content tests',
category='testing')