From 45f1d9904470661e73a52a005dfd41f559f358ac Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 21 Aug 2019 16:31:48 -0700 Subject: [PATCH] Fix tests for soong change. Test: ./run_tests.py Bug: None Change-Id: I235225f449e3e3d0bb17c5d0c28d2acd8acfa6c9 --- run_tests.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 35b7a861e..1648665cb 100755 --- a/run_tests.py +++ b/run_tests.py @@ -131,7 +131,11 @@ def get_build_cmds(bitness, host): # Generate $OUT_DIR/combined-$TARGET_PRODUCT.ninja and build the # template target's dependencies. - check_call(['make', '-C', ANDROID_DIR, target]) + check_call([ + 'bash', + os.path.join(ANDROID_DIR, 'build/soong/soong_ui.bash'), '--make-mode', + target + ]) ninja_path = os.path.join( out_dir, 'combined-' + os.getenv('TARGET_PRODUCT') + '.ninja')