diff options
Diffstat (limited to 'test')
| -rwxr-xr-x | test/testrunner/run_build_test_target.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testrunner/run_build_test_target.py b/test/testrunner/run_build_test_target.py index 835b678cd6..e105da33d4 100755 --- a/test/testrunner/run_build_test_target.py +++ b/test/testrunner/run_build_test_target.py @@ -51,6 +51,8 @@ if target.get('target'): build_command += ' -j' + str(n_threads) build_command += ' -C ' + env.ANDROID_BUILD_TOP build_command += ' ' + target.get('target') + # Add 'dist' to avoid Jack issues b/36169180. + build_command += ' dist' print build_command.split() if subprocess.call(build_command.split()): sys.exit(1) |