summaryrefslogtreecommitdiffstats
path: root/runtime/prebuilt_tools_test.cc
diff options
context:
space:
mode:
authorDavid Srbecky <dsrbecky@google.com>2015-04-21 18:31:50 +0100
committerDavid Srbecky <dsrbecky@google.com>2015-04-21 18:31:50 +0100
commit0774307ddf064445c7ad3b1209ee5b6632d941ad (patch)
tree3521c48569beca86df31ecca96278d43ecfba739 /runtime/prebuilt_tools_test.cc
parent296c6cc2e5e90a81bdfc5f5486eae6b64d80e595 (diff)
downloadart-0774307ddf064445c7ad3b1209ee5b6632d941ad.tar.gz
art-0774307ddf064445c7ad3b1209ee5b6632d941ad.tar.bz2
art-0774307ddf064445c7ad3b1209ee5b6632d941ad.zip
Do not look for prebuilts on architectures other than Arm.
The repo manifest on the build server includes prebuilts only for Arm and host. Change-Id: Ic9fc762f3e9a4421cc2293b6e95caf196551cbad
Diffstat (limited to 'runtime/prebuilt_tools_test.cc')
-rw-r--r--runtime/prebuilt_tools_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/prebuilt_tools_test.cc b/runtime/prebuilt_tools_test.cc
index 453c0dac5f..53bc87665a 100644
--- a/runtime/prebuilt_tools_test.cc
+++ b/runtime/prebuilt_tools_test.cc
@@ -49,7 +49,8 @@ TEST_F(PrebuiltToolsTest, CheckHostTools) {
}
TEST_F(PrebuiltToolsTest, CheckTargetTools) {
- InstructionSet isas[] = { kArm, kArm64, kThumb2, kX86, kX86_64, kMips, kMips64 }; // NOLINT
+ // Other prebuilts are missing from the build server's repo manifest.
+ InstructionSet isas[] = { kThumb2 }; // NOLINT
for (InstructionSet isa : isas) {
std::string tools_dir = GetAndroidTargetToolsDir(isa);
if (tools_dir.empty()) {