OSDN Git Service

Do not look for prebuilts on architectures other than Arm.
authorDavid Srbecky <dsrbecky@google.com>
Tue, 21 Apr 2015 17:31:50 +0000 (18:31 +0100)
committerDavid Srbecky <dsrbecky@google.com>
Tue, 21 Apr 2015 17:31:50 +0000 (18:31 +0100)
The repo manifest on the build server includes prebuilts
only for Arm and host.

Change-Id: Ic9fc762f3e9a4421cc2293b6e95caf196551cbad

runtime/prebuilt_tools_test.cc

index 453c0da..53bc876 100644 (file)
@@ -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()) {