summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Alex Light <allight@google.com> 2018-11-16 15:46:42 -0800
committer Alex Light <allight@google.com> 2018-11-16 15:49:10 -0800
commit1d77a70bc0e1138dbd4a57375f34854bcdb26780 (patch)
tree8d19e1ae64a057381f91fbb43ac10bdbed9bc553
parente14294cc489aa5427c3eeede59ab90d0f2b466d6 (diff)
Disable running run-test with linux_bionic
Currently it is failing due to some issue with library search path. Test: ./test/testrunner/run_build_test_target.py art-linux-bionic-x86 Bug: 119673278 Bug: 119687007 Change-Id: I1edda532c1822214a7bcb36850b1a5e450c94491
-rw-r--r--test/testrunner/target_config.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/testrunner/target_config.py b/test/testrunner/target_config.py
index 077129fa6c..b1878133f0 100644
--- a/test/testrunner/target_config.py
+++ b/test/testrunner/target_config.py
@@ -331,9 +331,10 @@ target_config = {
},
'art-linux-bionic-x64': {
'build': '{ANDROID_BUILD_TOP}/art/tools/build_linux_bionic_tests.sh {MAKE_OPTIONS}',
- 'run-test': ['--run-test-option=--bionic',
- '--host',
- '--64',
- '--no-build-dependencies'],
+ # Currently failing on the build-bots due to some library search path issue.
+ # 'run-test': ['--run-test-option=--bionic',
+ # '--host',
+ # '--64',
+ # '--no-build-dependencies'],
},
}