diff options
| -rwxr-xr-x | test/testrunner/testrunner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testrunner/testrunner.py b/test/testrunner/testrunner.py index 0b9a6e6457..c211ed69c1 100755 --- a/test/testrunner/testrunner.py +++ b/test/testrunner/testrunner.py @@ -911,6 +911,8 @@ def main(): build_command += ' -j' + str(n_thread) build_command += ' -C ' + env.ANDROID_BUILD_TOP build_command += ' ' + build_targets + # Add 'dist' to avoid Jack issues b/36169180. + build_command += ' dist' if subprocess.call(build_command.split()): sys.exit(1) if user_requested_test: |