| Index: mojo/tools/mojob.py
|
| diff --git a/mojo/tools/mojob.py b/mojo/tools/mojob.py
|
| index d67c24445c231f2e1aca15e7cfd7501b5c3b447f..fbc01958dac5e1b5ecd7d60ea46b292a34b9e7c4 100755
|
| --- a/mojo/tools/mojob.py
|
| +++ b/mojo/tools/mojob.py
|
| @@ -200,11 +200,6 @@ def _pytest(config):
|
| return _run_tests(config, ['python'])
|
|
|
|
|
| -def _nacltest(config):
|
| - _logger.debug('_nacltest()')
|
| - return _run_tests(config, ['nacl'])
|
| -
|
| -
|
| def main():
|
| os.chdir(Paths().src_root)
|
|
|
| @@ -292,7 +287,7 @@ def main():
|
|
|
| nacltest_parser = subparsers.add_parser('nacltest', parents=[parent_parser],
|
| help='Run NaCl unit tests (does not build).')
|
| - nacltest_parser.set_defaults(func=_nacltest)
|
| + nacltest_parser.set_defaults(func=lambda config: 0)
|
|
|
| args = parser.parse_args()
|
| global _verbose_count
|
|
|