From 742adbd76f8d4c730866ba02d2e4b71524ce9049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Hajdan=2C=20Jr?= Date: Mon, 20 Mar 2017 20:46:18 +0100 Subject: [PATCH] Run new recipes 'test' command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BUG=chromium:699120 Change-Id: Ie498bec2e2e38cbde8fac6409b13d2032b2e1a1b Reviewed-on: https://chromium-review.googlesource.com/457318 Reviewed-by: Robbie Iannucci Commit-Queue: Paweł Hajdan Jr. --- tests/recipes_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/recipes_test.py b/tests/recipes_test.py index 052b1012ec..f9851531cf 100755 --- a/tests/recipes_test.py +++ b/tests/recipes_test.py @@ -15,5 +15,9 @@ def recipes_py(*args): subprocess.check_call([ os.path.join(ROOT_DIR, 'recipes.py'), '--use-bootstrap'] + list(args)) +# Run both current simulation test logic (simulation_test), and experimental +# (test). Eventually the former will be removed. recipes_py('simulation_test') +recipes_py('test', 'run') + recipes_py('lint')