Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1958)

Unified Diff: mojo/tools/mojob.py

Issue 1125283009: Run nacltest steps in mojob.py test (on linux) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: exclude asan Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/tools/get_test_list.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « mojo/tools/get_test_list.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698