Android 11系统映像可直接将 ARM 指令转换成 x86 指令,因此以前很多需要真机测试的情况,现在只需要模拟器就可以进行操作了。
不过,根据官方博客 Run ARM apps on the Android Emulator 尾部的一段注意事项:
这段事项说明,自己编译的镜像是没办法用上这个功能的,必须是Google编译好的镜像。
前置条件
- macOS Big Sur(11.7.5)
- Homebrew (1.1.9 或更高版本)
- Xcode (13.2.1或更高版本)
- Android Studio Electric Eel | 2022.1.1 Patch 2
注意:根据Google官方文档,2021年6月22日之后的Android系统版本不支持在macOS系统上构建,我们只能构建之前的版本,或者之后发布的以前版本的补丁修复。目前测试最高只能编译到Android 12.0, Android 12.1编译不通过。
准备环境
创建大小写敏感分区
如果文件系统不是大小写敏感的磁盘分区,则需要创建大小写敏感分区用于Android系统编译。
针对文件系统不是 AppleFS 的磁盘,建议创建大小写敏感的文件镜像并挂载。参考如下命令:
1 2 3 4 5 6 |
$ cd ~ # 磁盘空间不可低于300GB,目前测试低于300GB可能会空间不足导致编译失败 $ hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -volname aosp -size 300g aosp.dmg $ hdiutil attach aosp.dmg.sparseimage -mountpoint /Volumes/aosp |
针对AppleFS文件系统的磁盘,建议创建大小写敏感的APFS卷宗,相对于文件镜像,性能更好,尤其是针对TimeMachine更加友好。参考如下命令:
1 |
$ diskutil apfs addVolume disk1 'Case-sensitive APFS' aosp |
代码拉取&构建
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
$ cd /Volumes/aosp $ mkdir AndSrc # 不建议直接在aosp目录下直接操作,由于APFS创建的卷宗根目录下会放置回收站 .Trashes 因此编译的时候可能会报错: # opendir failed: .Trashes: Operation not permitted $ cd AndSrc $ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-security-12.0.0_r41 --repo-url=https://gerrit-googlesource.lug.ustc.edu.cn/git-repo $ repo sync -j4 --fail-fast $ source build/envsetup.sh # too many open files $ ulimit -S -n 4096 # 纯x86系统镜像,不能安装arm应用 # lunch aosp_x86_64 # eng:代表 engineer,开发工程师的版本,拥有最大的权限(root等),具有额外调试工具的开发配置。 # 执行 lunch 命令可以输出全部的编译目标列表 # 更多的编译选项可以从 build/make/target/product/ 下看到 # lunch aosp_x86_arm-eng 编译后的镜像可以安装 arm 应用, 不过在不进行任何代码调整的情况下,应用启动会崩溃 # 镜像无法安装ARM应用 $ lunch aosp_x86_64-eng $ export USE_CCACHE=1 # 如果需要跟踪调试代码,建议编译为调试类型 # export TARGET_BUILD_TYPE=debug $ m |
运行镜像
选择system-qemu.img和vendor-qemu.img,这两个镜像是专门为qemu运行制作的,如果选择system.img 和vendor.img,则avd运行失败。
1 2 3 4 5 6 7 8 9 10 11 |
$ cd /Volumes/aosp/AndSrc $ export ANDROID_BUILD_TOP=/Volumes/aosp/AndSrc $ export PATH=$PATH:$ANDROID_BUILD_TOP/out/host/linux-x86/bin $ export ANDROID_SWT=$ANDROID_BUILD_TOP/out/host/linux-x86/framework $ export ANDROID_PRODUCT_OUT=$ANDROID_BUILD_TOP/out/target/product/generic_x86_64 $ ./prebuilts/android-emulator/darwin-x86_64/emulator -verbose -show-kernel |
上面运行起来的镜像是从 /Volumes/aosp/AndSrc/out/target/product/generic_x86_64/hardware-qemu.ini
即可读取配置信息的,但是这个文件直接修改无效,我们如果需要修改参数,只能从启动参数中设置。
比如我们如果需要增大内存,开启GPU
的支持,则执行如下命令:
1 |
$ ./prebuilts/android-emulator/darwin-x86_64/emulator -gpu on -memory 4096 -verbose -show-kernel |
解决报错
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 |
[ 93% 234/250] test android/soong/sh FAILED: out/soong/.bootstrap/soong-sh/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/sh -f out/soong/.bootstrap/soong-sh/test/test.passed -- out/soong/.bootstrap/soong-sh/test/test -test.short --- FAIL: TestShTest_dataModules (67.90s) sh_binary_test.go:38: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sh_binary_test.go:38: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 94% 235/250] test android/soong/sysprop FAILED: out/soong/.bootstrap/soong-sysprop/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/sysprop -f out/soong/.bootstrap/soong-sysprop/test/test.passed -- out/soong/.bootstrap/soong-sysprop/test/test -test.short --- FAIL: TestApexAvailabilityIsForwarded (56.26s) sysprop_test.go:329: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:329: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:329: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:329: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestMinSdkVersionIsForwarded (0.17s) sysprop_test.go:351: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:351: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:351: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:351: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSyspropLibrary (0.30s) sysprop_test.go:139: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:139: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:139: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sysprop_test.go:139: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 94% 236/250] test android/soong/kernel FAILED: out/soong/.bootstrap/soong-kernel/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/kernel -f out/soong/.bootstrap/soong-kernel/test/test.passed -- out/soong/.bootstrap/soong-kernel/test/test -test.short --- FAIL: TestKernelModulesFilelist (72.15s) prebuilt_kernel_modules_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_kernel_modules_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_kernel_modules_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_kernel_modules_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 94% 237/250] test android/soong/bpf FAILED: out/soong/.bootstrap/soong-bpf/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/bpf -f out/soong/.bootstrap/soong-bpf/test/test.passed -- out/soong/.bootstrap/soong-bpf/test/test -test.short --- FAIL: TestBpfDataDependency (70.89s) bpf_test.go:55: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" bpf_test.go:55: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 95% 238/250] test android/soong/rust FAILED: out/soong/.bootstrap/soong-rust/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/rust -f out/soong/.bootstrap/soong-rust/test/test.passed -- out/soong/.bootstrap/soong-rust/test/test -test.short --- FAIL: TestClippy (70.54s) --- FAIL: TestClippy/path= (70.24s) clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestClippy/path=external/ (0.09s) clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestClippy/path=hardware/ (0.20s) clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" clippy_test.go:63: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLints (0.66s) --- FAIL: TestLints/path= (0.20s) compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLints/path=external/ (0.23s) compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLints/path=hardware/ (0.23s) compiler_test.go:171: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProjectJsonBinary (0.24s) project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProjectJsonBindGen (0.22s) project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProjectJsonDep (0.25s) project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProjectJsonFeature (0.23s) project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProjectJsonMultiVersion (0.21s) project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" project_json_test.go:34: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 95% 239/250] test android/soong/filesystem FAILED: out/soong/.bootstrap/soong-filesystem/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/filesystem -f out/soong/.bootstrap/soong-filesystem/test/test.passed -- out/soong/.bootstrap/soong-filesystem/test/test -test.short --- FAIL: TestFileSystemDeps (75.42s) filesystem_test.go:36: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" filesystem_test.go:36: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFileSystemFillsLinkerConfigWithStubLibs (0.10s) filesystem_test.go:47: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" filesystem_test.go:47: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 96% 240/250] test android/soong/aidl FAILED: out/soong/.bootstrap/aidl-soong-rules/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./system/tools/aidl/build -f out/soong/.bootstrap/aidl-soong-rules/test/test.passed -- out/soong/.bootstrap/aidl-soong-rules/test/test -test.short --- FAIL: TestAidlFlags (61.76s) aidl_test.go:1178: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1178: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1178: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1178: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAidlImportFlagsForIncludeDirs (0.27s) aidl_test.go:1040: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1040: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1040: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1040: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAidlModuleNameContainsVersion (0.26s) aidl_test.go:1210: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1210: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCcModuleWithApexNameMacro (0.18s) aidl_test.go:922: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:922: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:922: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:922: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCreatesModulesWithFrozenVersions (0.45s) aidl_test.go:480: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:480: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:480: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:480: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCreatesModulesWithNoVersions (0.28s) aidl_test.go:444: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:444: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:444: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:444: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDuplicatedVersions (0.91s) aidl_test.go:831: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:831: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestExplicitAidlModuleImport (0.27s) aidl_test.go:1221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestImportInRelease (0.36s) aidl_test.go:360: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:360: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:360: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:360: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestImports (0.35s) aidl_test.go:711: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:711: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNativeOutputIsAlwaysVersioned (0.29s) aidl_test.go:594: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:594: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:594: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:594: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNonVersionedModuleUsageInRelease (0.31s) aidl_test.go:320: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:320: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRustDuplicateNames (0.29s) aidl_test.go:993: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:993: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSrcsAvailable (0.30s) aidl_test.go:980: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:980: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSupportsGenruleAndFilegroup (0.30s) aidl_test.go:1113: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1113: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1113: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:1113: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUnstableModules (0.31s) aidl_test.go:425: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:425: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:425: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:425: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUnstableVersionUsageInRelease (0.59s) aidl_test.go:274: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:274: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUnstableVersionedModuleUsageInRelease (0.46s) aidl_test.go:385: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:385: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUnstableVndkModule (0.29s) aidl_test.go:907: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:907: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:907: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:907: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVintfWithoutVersionInRelease (0.30s) aidl_test.go:248: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" aidl_test.go:248: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 96% 241/250] test android/soong/java FAILED: out/soong/.bootstrap/soong-java/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/java -f out/soong/.bootstrap/soong-java/test/test.passed -- out/soong/.bootstrap/soong-java/test/test -test.short --- FAIL: TestBinary (62.01s) java_test.go:423: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" java_test.go:423: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestEmbedNotice (0.19s) app_test.go:2573: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:2573: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:2573: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:2573: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJNIABI (0.16s) app_test.go:1161: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1161: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1161: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1161: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJNIPackaging (0.12s) app_test.go:1279: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1279: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1279: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1279: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJNISDK (0.21s) app_test.go:1370: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:1370: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStl (0.15s) app_test.go:2176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:2176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestTest (0.02s) java_test.go:466: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" java_test.go:466: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUpdatableApps_ErrorIfJniLibDoesntSupportMinSdkVersion (0.16s) app_test.go:487: missing the expected error "\"libjni\" .*: sdk_version\\(current\\) is higher than min_sdk_version\\(29\\)" (checked 2 error(s)) app_test.go:487: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" app_test.go:487: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestUpdatableApps_JniLibShouldBeBuiltAgainstMinSdkVersion (0.15s) app_test.go:441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUpdatableApps_JniLibsShouldShouldSupportMinSdkVersion (0.15s) app_test.go:397: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:397: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:397: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" app_test.go:397: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUpdatableApps_TransitiveDepsShouldSetMinSdkVersion (0.16s) app_test.go:379: missing the expected error "module \"bar\".*: should support min_sdk_version\\(29\\)" (checked 4 error(s)) app_test.go:379: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" app_test.go:379: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" app_test.go:379: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" app_test.go:379: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" FAIL [ 96% 242/250] test android/soong/cc FAILED: out/soong/.bootstrap/soong-cc/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/cc -f out/soong/.bootstrap/soong-cc/test/test.passed -- out/soong/.bootstrap/soong-cc/test/test -test.short --- FAIL: TestAidlFlagsPassedToTheAidlCompiler (74.51s) cc_test.go:3696: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3696: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3696: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3696: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAsan (0.13s) sanitize_test.go:101: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" sanitize_test.go:101: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCcObjectWithBazel (0.14s) object_test.go:99: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:99: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:99: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:99: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDataLibs (0.20s) cc_test.go:803: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:803: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:803: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:803: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDataLibsPrebuiltSharedTestLibrary (0.19s) cc_test.go:3210: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3210: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDataLibsRelativeInstallPath (0.21s) cc_test.go:854: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:854: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:854: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:854: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDefaults (0.24s) cc_test.go:3441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3441: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDoubleLoadbleDep (0.19s) cc_test.go:1170: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1170: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1170: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1170: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestEnforceProductVndkVersion (0.23s) cc_test.go:2219: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2219: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestErrorsIfAModuleDependsOnDisabled (0.16s) cc_test.go:3380: missing the expected error "module \"libA\" .* depends on disabled module \"libB\"" (checked 4 error(s)) cc_test.go:3380: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" cc_test.go:3380: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" cc_test.go:3380: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" cc_test.go:3380: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestExcludeRuntimeLibs (0.21s) cc_test.go:3004: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3004: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3004: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3004: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFuchsiaDeps (0.06s) cc_test.go:172: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:172: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:172: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:172: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFuchsiaTargetDecl (0.05s) cc_test.go:211: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:211: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:211: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:211: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFuzzTarget (0.18s) cc_test.go:3400: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3400: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3400: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3400: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestGen (0.39s) --- FAIL: TestGen/simple (0.20s) gen_test.go:27: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" gen_test.go:27: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestGen/filegroup (0.19s) gen_test.go:47: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" gen_test.go:47: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIncludeDirsExporting (1.03s) --- FAIL: TestIncludeDirsExporting/ensure_exported_include_dirs_are_not_automatically_re-exported_from_shared_libs (0.20s) cc_test.go:4106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIncludeDirsExporting/ensure_exported_include_dirs_are_automatically_re-exported_from_whole_static_libs (0.21s) cc_test.go:4150: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4150: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4150: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4150: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIncludeDirsExporting/ensure_only_aidl_headers_are_exported (0.23s) cc_test.go:4205: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4205: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIncludeDirsExporting/ensure_only_proto_headers_are_exported (0.24s) cc_test.go:4238: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4238: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4238: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4238: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIncludeDirsExporting/ensure_only_sysprop_headers_are_exported (0.15s) cc_test.go:4267: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:4267: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestInstallPartition (0.24s) cc_test.go:288: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:288: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:288: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:288: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestInstallSharedLibs (0.14s) cc_test.go:3608: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3608: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3608: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3608: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryGenruleCmd (0.23s) genrule_test.go:106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" genrule_test.go:106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" genrule_test.go:106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" genrule_test.go:106: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryHeaders (0.18s) library_headers_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_headers_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_headers_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_headers_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse (1.17s) --- FAIL: TestLibraryReuse/simple (0.23s) library_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse/extra_static_source (0.20s) library_test.go:52: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:52: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse/extra_shared_source (0.18s) library_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse/extra_static_cflags (0.19s) library_test.go:104: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:104: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:104: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:104: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse/extra_shared_cflags (0.20s) library_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLibraryReuse/global_cflags_for_reused_generated_sources (0.16s) library_test.go:156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLinkerScript (0.21s) --- FAIL: TestLinkerScript/script (0.21s) object_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:78: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLlndkHeaders (0.24s) cc_test.go:2836: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2836: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2836: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2836: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLlndkLibrary (0.22s) cc_test.go:2742: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2742: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2742: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2742: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestMakeLinkType (0.18s) cc_test.go:2447: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2447: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestMinSdkVersionInClangTriple (0.21s) cc_test.go:3714: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3714: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3714: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3714: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestMinSdkVersionsOfCrtObjects (0.19s) object_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuilt (0.22s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibrary (0.20s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibraryHeaders (0.20s) library_headers_test.go:44: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_headers_test.go:44: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibrarySanitized (0.19s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibraryShared (0.19s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibrarySharedStem (0.20s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibraryStatic (0.19s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltLibraryStem (0.18s) prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" prebuilt_test.go:35: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrepareForTestWithCcDefaultModules (0.11s) cc_test.go:152: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:152: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:152: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:152: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProductVariableDefaults (0.19s) cc_test.go:3533: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3533: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3533: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3533: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProductVndkExtDependency (0.24s) cc_test.go:1899: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1899: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProto (0.32s) --- FAIL: TestProto/simple (0.13s) proto_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:26: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProto/plugin (0.19s) proto_test.go:40: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:40: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:40: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" proto_test.go:40: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRecovery (0.21s) cc_test.go:3156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3156: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRecoverySnapshotCapture (0.13s) vendor_snapshot_test.go:1241: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1241: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1241: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1241: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRecoverySnapshotDirected (0.21s) vendor_snapshot_test.go:1464: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1464: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1464: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1464: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRecoverySnapshotExclude (0.16s) vendor_snapshot_test.go:1365: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1365: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRuntimeLibs (0.21s) cc_test.go:2968: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2968: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2968: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2968: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRuntimeLibsNoVndk (0.18s) cc_test.go:3016: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3016: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSanitizeMemtagHeap (0.23s) cc_test.go:3849: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3849: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3849: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3849: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSanitizeMemtagHeapWithSanitizeDevice (0.25s) cc_test.go:3910: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3910: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3910: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3910: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSanitizeMemtagHeapWithSanitizeDeviceDiag (0.21s) cc_test.go:3972: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3972: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStaticDepsOrderWithStubs (0.15s) cc_test.go:3340: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3340: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3340: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3340: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStaticExecutable (0.15s) cc_test.go:3315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStaticLibDepExport (0.16s) cc_test.go:3056: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3056: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3056: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3056: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStaticLibDepReordering (0.15s) cc_test.go:2656: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2656: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2656: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2656: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStaticLibDepReorderingWithShared (0.15s) cc_test.go:2695: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2695: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2695: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:2695: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStubsLibReexportsHeaders (0.15s) cc_test.go:3664: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3664: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestStubsVersions (0.11s) library_test.go:204: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" library_test.go:204: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUseCrtObjectOfCorrectVersion (0.14s) object_test.go:53: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" object_test.go:53: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorModuleUseVndkExt (0.16s) cc_test.go:1719: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1719: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1719: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1719: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorPublicLibraries (0.15s) vendor_public_library_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_public_library_test.go:23: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSnapshotCapture (0.15s) vendor_snapshot_test.go:90: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:90: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:90: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:90: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSnapshotDirected (0.12s) vendor_snapshot_test.go:220: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:220: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:220: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:220: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSnapshotExclude (0.10s) vendor_snapshot_test.go:1081: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:1081: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSnapshotExcludeInVendorProprietaryPathErrors (0.11s) vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm64_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm64_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm64_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: missing the expected error "module \"libvendor\\{.+,image:vendor.+,arch:arm_.+\\}\" in vendor proprietary path \"device\" may not use \"exclude_from_vendor_snapshot: true\"" (checked 4 error(s)) vendor_snapshot_test.go:1174: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" vendor_snapshot_test.go:1174: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestVendorSnapshotSanitizer (0.14s) vendor_snapshot_test.go:996: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:996: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:996: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:996: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSnapshotUse (0.11s) vendor_snapshot_test.go:811: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:811: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:811: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vendor_snapshot_test.go:811: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorSrc (0.15s) cc_test.go:221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:221: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVersionedStubs (0.15s) cc_test.go:3237: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3237: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3237: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3237: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndk (0.16s) cc_test.go:598: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:598: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:598: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:598: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkExt (0.16s) cc_test.go:1454: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1454: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1454: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1454: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkExtUseVendorLib (0.13s) cc_test.go:1773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkExtWithoutBoardVndkVersion (0.10s) cc_test.go:1468: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1468: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1468: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1468: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkExtWithoutProductVndkVersion (0.11s) cc_test.go:1499: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:1499: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkLibrariesTxtAndroidMk (0.13s) cc_test.go:724: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:724: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:724: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:724: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkUsingCoreVariant (0.11s) cc_test.go:778: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:778: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:778: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:778: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkWhenVndkVersionIsNotSet (0.11s) cc_test.go:881: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:881: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:881: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:881: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkWithHostSupported (0.13s) cc_test.go:680: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:680: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestEmptyWholeStaticLibsAllowMissingDependencies (0.17s) cc_test.go:3557: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" cc_test.go:3557: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL [ 97% 243/250] test android/soong/apex FAILED: out/soong/.bootstrap/soong-apex/test/test.passed out/soong/.bootstrap/bin/gotestrunner -p ./build/soong/apex -f out/soong/.bootstrap/soong-apex/test/test.passed -- out/soong/.bootstrap/soong-apex/test/test -test.short --- FAIL: TestAllowedFiles (60.67s) apex_test.go:7239: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7239: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7239: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAndroidMkWritesCommonProperties (0.17s) apex_test.go:2580: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2580: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAndroidMk_VendorApexRequired (0.28s) apex_test.go:2548: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2548: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexAvailable_CheckForPlatform (0.24s) apex_test.go:5442: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5442: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5442: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexAvailable_CreatedForApex (0.24s) apex_test.go:5505: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5505: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5505: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexAvailable_DirectDep (0.34s) apex_test.go:5300: missing the expected error "requires \"libfoo\" that doesn't list the APEX under 'apex_available'." (checked 3 error(s)) apex_test.go:5300: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5300: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5300: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexAvailable_IndirectDep (0.29s) apex_test.go:5337: missing the expected error "requires \"libbaz\" that doesn't list the APEX under 'apex_available'.\\n\\nDependency path:\n.*via tag apex\\.dependencyTag.*name:sharedLib.*\n.*-> libfoo.*link:shared.*\n.*via tag cc\\.libraryDependencyTag.*Kind:sharedLibraryDependency.*\n.*-> libbar.*link:shared.*\n.*via tag cc\\.libraryDependencyTag.*Kind:sharedLibraryDependency.*\n.*-> libbaz.*link:shared.*" (checked 5 error(s)) apex_test.go:5337: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5337: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5337: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5337: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5337: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexAvailable_InvalidApexName (0.47s) apex_test.go:5402: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5402: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5402: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexDependsOnLLNDKTransitively (0.58s) --- FAIL: TestApexDependsOnLLNDKTransitively/unspecified_version_links_to_the_latest (0.25s) apex_test.go:1325: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1325: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1325: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexDependsOnLLNDKTransitively/always_use_the_latest (0.32s) apex_test.go:1325: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1325: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition (2.19s) --- FAIL: TestApexInVariousPartition/:system (0.43s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition/product_specific:_true:product (0.38s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition/soc_specific:_true:vendor (0.36s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition/proprietary:_true:vendor (0.34s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition/vendor:_true:vendor (0.33s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexInVariousPartition/system_ext_specific:_true:system_ext (0.35s) apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3984: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexKeyFromOtherModule (0.33s) apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4122: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexKeysTxt (0.38s) apex_test.go:7198: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7198: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexManifest (0.31s) apex_test.go:691: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:691: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_DefaultsToLatest (0.30s) apex_test.go:1624: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1624: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1624: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_ErrorIfDepIsNewer (0.32s) apex_test.go:2053: missing the expected error "module \"mylib2\".*: should support min_sdk_version\\(29\\) for \"myapex\"" (checked 2 error(s)) apex_test.go:2053: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2053: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexMinSdkVersion_ErrorIfDepIsNewer_Java (0.28s) apex_test.go:2094: missing the expected error "module \"bar\".*: should support min_sdk_version\\(29\\) for \"myapex\"" (checked 6 error(s)) apex_test.go:2094: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2094: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2094: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2094: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2094: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2094: errs[5] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexMinSdkVersion_ErrorIfIncompatibleVersion (0.23s) apex_test.go:1795: missing the expected error "module \"mylib\".*: should support min_sdk_version\\(29\\)" (checked 1 error(s)) apex_test.go:1795: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexMinSdkVersion_NativeModulesShouldBeBuiltAgainstStubs (0.26s) apex_test.go:1488: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1488: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1488: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1488: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_Okay (0.23s) apex_test.go:1872: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1872: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_OkayEvenWhenDepIsNewer_IfItSatisfiesApexMinSdkVersion (0.25s) apex_test.go:2129: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2129: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_SupportsCodeNames (0.24s) apex_test.go:1572: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_WorksWithActiveCodenames (0.24s) apex_test.go:2218: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexMinSdkVersion_WorksWithSdkCodename (0.26s) apex_test.go:2188: missing the expected error "libbar.*: should support min_sdk_version\\(S\\)" (checked 6 error(s)) apex_test.go:2188: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2188: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2188: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2188: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2188: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2188: errs[5] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexMutatorsDontRunIfDisabled (0.05s) apex_test.go:6295: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6295: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6295: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6295: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexName (0.22s) apex_test.go:3646: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3646: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3646: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3646: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexPropertiesShouldBeDefaultable (0.23s) apex_test.go:5264: missing the expected error "requires \"libfoo\" that doesn't list the APEX under 'apex_available'." (checked 4 error(s)) apex_test.go:5264: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5264: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5264: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5264: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestApexSet (0.24s) apex_test.go:7117: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7117: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7117: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithAppImports (0.24s) apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5140: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithAppImportsPrefer (0.23s) apex_test.go:5189: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithApps (0.31s) apex_test.go:5061: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5061: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5061: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithArch (0.23s) apex_test.go:3884: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithExplicitStubsDependency (0.25s) apex_test.go:1033: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1033: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1033: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1033: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithJavaImport (0.24s) apex_test.go:5032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithJniLibs (0.25s) apex_test.go:6253: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6253: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithRuntimeLibsDependency (0.28s) apex_test.go:1125: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1125: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1125: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithShBinary (0.26s) apex_test.go:3943: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3943: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3943: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3943: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithStubs (0.27s) apex_test.go:764: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:764: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:764: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithSystemLibsStubs (0.27s) apex_test.go:1392: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1392: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1392: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithTarget (0.27s) apex_test.go:3793: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3793: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3793: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3793: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3793: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithTestHelperApp (0.23s) apex_test.go:5231: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5231: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5231: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5231: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithTests (0.25s) apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4848: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApex_withPrebuiltFirmware (0.48s) --- FAIL: TestApex_withPrebuiltFirmware/system_apex_with_prebuilt_firmware (0.23s) apex_test.go:2520: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2520: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2520: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2520: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApex_withPrebuiltFirmware/vendor_apex_with_prebuilt_firmware (0.24s) apex_test.go:2520: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAppBundle (0.27s) apex_test.go:6319: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6319: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6319: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6319: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAppSetBundle (0.22s) apex_test.go:6350: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6350: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestAppSetBundlePrebuilt (0.30s) apex_test.go:6393: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6393: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBasicApex (0.22s) apex_test.go:301: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:301: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:301: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBasicZipApex (0.26s) apex_test.go:713: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts (1.06s) --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/prebuilt_only (0.18s) apex_test.go:4523: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4523: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4523: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4523: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/apex_set_only (0.15s) apex_test.go:4564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/prebuilt_with_source_library_preferred (0.19s) apex_test.go:4630: missing the expected error "module libfoo does not provide a dex boot jar" (checked 4 error(s)) apex_test.go:4630: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4630: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4630: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4630: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/prebuilt_library_preferred_with_source (0.17s) apex_test.go:4685: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4685: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4685: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4685: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/prebuilt_with_source_apex_preferred (0.15s) apex_test.go:4759: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4759: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestBootDexJarsFromSourcesAndPrebuilts/prebuilt_preferred_with_source_apex_disabled (0.21s) apex_test.go:4835: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4835: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4835: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4835: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCarryRequiredModuleNames (0.27s) apex_test.go:6032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6032: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate (1.37s) --- FAIL: TestCertificate/if_unspecified,_it_defaults_to_DefaultAppCertificate (0.23s) apex_test.go:2713: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate/override_when_unspecified (0.26s) apex_test.go:2731: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2731: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate/if_specified_as_:module,_it_respects_the_prop (0.23s) apex_test.go:2754: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2754: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2754: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2754: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate/override_when_specifiec_as_<:module> (0.24s) apex_test.go:2777: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate/if_specified_as_name,_finds_it_from_DefaultDevKeyDir (0.21s) apex_test.go:2801: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2801: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2801: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCertificate/override_when_specified_as_<name> (0.20s) apex_test.go:2820: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCompatConfig (0.20s) apex_test.go:5963: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestCompressedApex (0.19s) apex_test.go:7331: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDefaults (0.18s) apex_test.go:616: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDependenciesInApexManifest (0.19s) apex_test.go:3538: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3538: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3538: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestDexpreoptAccessDexFilesFromPrebuiltApex (0.13s) --- FAIL: TestDexpreoptAccessDexFilesFromPrebuiltApex/prebuilt_no_source (0.13s) apex_test.go:6773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6773: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestErrorsIfDepsAreNotEnabled (0.19s) apex_test.go:4986: missing the expected error "module \"myapex\" .* depends on disabled module \"libfoo\"" (checked 6 error(s)) apex_test.go:4986: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4986: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4986: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4986: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4986: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4986: errs[5] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestExcludeDependency (0.18s) apex_test.go:7420: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7420: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7420: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7420: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFileContexts_FindInDefaultLocationIfNotSet (0.19s) apex_test.go:4017: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFileContexts_ProductSpecificApexes (0.16s) apex_test.go:4055: missing the expected error "\"myapex\" .*: file_contexts: cannot find" (checked 4 error(s)) apex_test.go:4055: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4055: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4055: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4055: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestFileContexts_SetViaFileGroup (0.18s) apex_test.go:4094: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4094: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4094: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4094: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4094: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFileContexts_ShouldBeUnderSystemSepolicyForSystemApexes (0.19s) apex_test.go:4036: missing the expected error "\"myapex\" .*: file_contexts: should be under system/sepolicy" (checked 6 error(s)) apex_test.go:4036: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4036: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4036: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4036: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4036: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:4036: errs[5] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestFilesInSubDir (0.19s) apex_test.go:2252: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2252: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestFilesInSubDirWhenNativeBridgeEnabled (0.19s) apex_test.go:2315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2315: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestHeaderLibsDependency (0.17s) apex_test.go:2974: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2974: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2974: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2974: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2974: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestIndirectTestFor (0.17s) apex_test.go:7002: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7002: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7002: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7002: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestInstallExtraFlattenedApexes (0.18s) apex_test.go:4960: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4960: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaSDKLibrary (0.19s) apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaSDKLibrary_CrossBoundary (0.19s) apex_test.go:5792: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5792: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5792: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5792: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaSDKLibrary_ImportOnly (0.19s) apex_test.go:5933: missing the expected error "java_libs: \"foo\" is not configured to be compiled into dex" (checked 4 error(s)) apex_test.go:5933: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5933: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5933: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:5933: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestJavaSDKLibrary_ImportPreferred (0.18s) apex_test.go:5843: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5843: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5843: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5843: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaSDKLibrary_WithinApex (0.19s) apex_test.go:5739: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaStableSdkVersion (0.70s) --- FAIL: TestJavaStableSdkVersion/Non-updatable_apex_with_non-stable_dep (0.18s) apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaStableSdkVersion/Updatable_apex_with_stable_dep (0.16s) apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2044: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestJavaStableSdkVersion/Updatable_apex_with_non-stable_dep (0.18s) apex_test.go:2046: missing the expected error "cannot depend on \"myjar\"" (checked 4 error(s)) apex_test.go:2046: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2046: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2046: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:2046: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestJavaStableSdkVersion/Updatable_apex_with_non-stable_transitive_dep (0.18s) apex_test.go:2046: missing the expected error "compiles against Android API, but dependency \"transitive-jar\" is compiling against private API." (checked 1 error(s)) apex_test.go:2046: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestKeys (0.17s) apex_test.go:2655: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestLegacyAndroid10Support (0.21s) apex_test.go:5641: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestMacro (0.18s) apex_test.go:2846: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2846: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2846: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2846: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNoStaticLinkingToStubsLib (0.15s) apex_test.go:7161: missing the expected error ".*required by \"mylib\" is a native library providing stub.*" (checked 1 error(s)) apex_test.go:7161: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestNoUpdatableJarsInBootImage (0.57s) --- FAIL: TestNoUpdatableJarsInBootImage/updatable_jar_from_ART_apex_in_the_ART_boot_image_=>_ok (0.09s) apex_test.go:6701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6701: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNoUpdatableJarsInBootImage/updatable_jar_from_ART_apex_in_the_framework_boot_image_=>_error (0.09s) apex_test.go:6708: missing the expected error "module \"some-art-lib\" from updatable apexes \\[\"com.android.art.debug\"\\] is not allowed in the framework boot image" (checked 4 error(s)) apex_test.go:6708: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6708: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6708: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6708: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestNoUpdatableJarsInBootImage/updatable_jar_from_some_other_apex_in_the_framework_boot_image_=>_error (0.08s) apex_test.go:6728: missing the expected error "module \"some-updatable-apex-lib\" from updatable apexes \\[\"some-updatable-apex\"\\] is not allowed in the framework boot image" (checked 4 error(s)) apex_test.go:6728: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6728: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6728: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6728: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestNoUpdatableJarsInBootImage/non-updatable_jar_from_some_other_apex_in_the_framework_boot_image_=>_ok (0.08s) apex_test.go:6737: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6737: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6737: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6737: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNoUpdatableJarsInBootImage/platform_jar_in_the_framework_boot_image_=>_ok (0.08s) apex_test.go:6761: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6761: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6761: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6761: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNonPreferredPrebuiltDependency (0.11s) apex_test.go:7295: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestNonTestApex (0.11s) apex_test.go:3691: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3691: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3691: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestOverrideApex (0.11s) apex_test.go:5540: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:5540: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPlatformUsesLatestStubsFromApexes (0.11s) apex_test.go:1671: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1671: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1671: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuilt (0.11s) apex_test.go:4155: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4155: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltApexName (0.11s) apex_test.go:4223: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4223: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4223: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4223: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4223: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltExportDexImplementationJars (0.23s) --- FAIL: TestPrebuiltExportDexImplementationJars/prebuilt_only (0.08s) apex_test.go:4326: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4326: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4326: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4326: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltExportDexImplementationJars/prebuilt_with_source_preferred (0.07s) apex_test.go:4387: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4387: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltExportDexImplementationJars/prebuilt_preferred_with_source (0.08s) apex_test.go:4437: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4437: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4437: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4437: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltFilenameOverride (0.11s) apex_test.go:4186: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4186: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4186: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltOverrides (0.11s) apex_test.go:4203: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4203: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4203: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:4203: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep (0.66s) --- FAIL: TestPrebuiltStubLibDep/only_source (0.21s) --- FAIL: TestPrebuiltStubLibDep/only_source/otherapex_enabled_true (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep/only_source/otherapex_enabled_false (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep/source_preferred (0.22s) --- FAIL: TestPrebuiltStubLibDep/source_preferred/otherapex_enabled_true (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep/source_preferred/otherapex_enabled_false (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep/prebuilt_preferred (0.11s) --- FAIL: TestPrebuiltStubLibDep/prebuilt_preferred/otherapex_enabled_false (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPrebuiltStubLibDep/only_prebuilt (0.11s) --- FAIL: TestPrebuiltStubLibDep/only_prebuilt/otherapex_enabled_false (0.11s) apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7564: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestPreferredPrebuiltSharedLibDep (0.11s) apex_test.go:7368: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7368: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:7368: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestProductVariant (0.13s) apex_test.go:2476: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestQApexesUseLatestStubsInBundledBuildsAndHWASAN (0.11s) apex_test.go:1726: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1726: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1726: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1726: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestQTargetApexUsesStaticUnwinder (0.11s) apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:1765: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestRejectNonInstallableJavaLibrary (0.11s) apex_test.go:6006: missing the expected error "\"myjar\" is not configured to be compiled into dex" (checked 5 error(s)) apex_test.go:6006: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6006: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6006: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6006: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6006: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestStaticLinking (0.12s) apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2610: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSymlinksFromApexToSystem (0.13s) apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6176: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestSymlinksFromApexToSystemRequiredModuleNames (0.12s) apex_test.go:6201: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6201: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6201: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6201: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestTestApex (0.12s) apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3744: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestTestFor (0.12s) apex_test.go:6925: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6925: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6925: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:6925: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestTestForForLibInOtherApex (0.12s) apex_test.go:7063: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestUpdatableDefault_should_set_min_sdk_version (0.13s) apex_test.go:6655: missing the expected error "\"myapex\" .*: updatable: updatable APEXes should set min_sdk_version" (checked 5 error(s)) apex_test.go:6655: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6655: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6655: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6655: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6655: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestUpdatable_should_set_min_sdk_version (0.12s) apex_test.go:6639: missing the expected error "\"myapex\" .*: updatable: updatable APEXes should set min_sdk_version" (checked 6 error(s)) apex_test.go:6639: errs[0] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6639: errs[1] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6639: errs[2] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6639: errs[3] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6639: errs[4] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" apex_test.go:6639: errs[5] = "\"Could not find a supported mac sdk: [\\\"10.10\\\" \\\"10.11\\\" \\\"10.12\\\" \\\"10.13\\\" \\\"10.14\\\" \\\"10.15\\\" \\\"11.0\\\" \\\"11.1\\\"]\"" --- FAIL: TestVendorApex (0.12s) apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2374: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVendorApex_use_vndk_as_stable (0.13s) apex_test.go:2421: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2421: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2421: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2421: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:2421: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexCurrent (0.12s) apex_test.go:3118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexForVndkLite (0.11s) vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:12: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexNameRule (0.12s) apex_test.go:3328: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3328: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3328: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3328: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3328: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexShouldNotProvideNativeLibs (0.15s) apex_test.go:3502: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3502: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3502: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3502: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexSkipsNativeBridgeSupportedModules (0.13s) apex_test.go:3361: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3361: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3361: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexUsesVendorVariant (0.40s) --- FAIL: TestVndkApexUsesVendorVariant/VNDK_lib_doesn't_have_an_apex_variant (0.12s) vndk_test.go:105: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexUsesVendorVariant/VNDK_APEX_gathers_only_vendor_variants_even_if_product_variants_are_available (0.14s) vndk_test.go:118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:118: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexUsesVendorVariant/VNDK_APEX_supports_coverage_variants (0.14s) vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" vndk_test.go:130: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexVersion (0.12s) apex_test.go:3259: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexWithBinder32 (0.08s) apex_test.go:3433: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestVndkApexWithPrebuilt (0.14s) apex_test.go:3175: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:3175: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApexWithStubsWithMinSdkVersion (0.21s) apex_test.go:859: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:859: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" --- FAIL: TestApex_PlatformUsesLatestStubFromApex (0.21s) apex_test.go:966: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:966: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:966: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" apex_test.go:966: "Could not find a supported mac sdk: [\"10.10\" \"10.11\" \"10.12\" \"10.13\" \"10.14\" \"10.15\" \"11.0\" \"11.1\"]" FAIL 07:16:33 soong bootstrap failed with: exit status 1 ninja: build stopped: subcommand failed. #### failed to build some targets (02:03 (mm:ss)) #### |
解决方案:
可以去 github 下载支持的SDK版本,然后解压缩到以下目录:
1 |
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs |
例如日志中支持的最新SDK版本是11.1
,恰好Xcode 13.2.1支持的最低版本正好是这个版本,于是下载该版本并直接解压缩到上面的目录(也可本站下载),然后继续编译:
如果出现如下报错信息:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
$ m build/make/core/soong_config.mk:195: warning: BOARD_PLAT_PUBLIC_SEPOLICY_DIR has been deprecated. Use SYSTEM_EXT_PUBLIC_SEPOLICY_DIRS instead. build/make/core/soong_config.mk:196: warning: BOARD_PLAT_PRIVATE_SEPOLICY_DIR has been deprecated. Use SYSTEM_EXT_PRIVATE_SEPOLICY_DIRS instead. ============================================ PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=12 TARGET_PRODUCT=aosp_x86_64 TARGET_BUILD_VARIANT=eng TARGET_BUILD_TYPE=release TARGET_ARCH=x86_64 TARGET_ARCH_VARIANT=x86_64 TARGET_2ND_ARCH=x86 TARGET_2ND_ARCH_VARIANT=x86_64 HOST_ARCH=x86_64 HOST_OS=darwin HOST_OS_EXTRA=Darwin-20.6.0-x86_64-11.7.5 HOST_BUILD_TYPE=release BUILD_ID=SD2A.220601.004.B2 OUT_DIR=out PRODUCT_SOONG_NAMESPACES=device/generic/goldfish device/generic/goldfish-opengl hardware/google/camera hardware/google/camera/devices/EmulatedCamera ============================================ [ 91% 228/250] test android/soong/sdk 2023/04/01 22:06:26 Skipping as sdk snapshot generation is only supported on linux_glibc not darwin [100% 250/250] out/soong/.bootstrap/bin/soong_build out/soong/build.ninja FAILED: out/soong/build.ninja cd "$(dirname "out/soong/.bootstrap/bin/soong_build")" && BUILDER="$PWD/$(basename "out/soong/.bootstrap/bin/soong_build")" && cd / && env -i "$BUILDER" --top "$TOP" --out "out/soong" -n "out" -d "out/soong/build.ninja.d" -t -l out/.module_paths/Android.bp.list -globFile out/soong/.bootstrap/build-globs.ninja -o out/soong/build.ninja --available_env out/soong/soong.environment.available --used_env out/soong/soong.environment.used Android.bp error: external/crosvm/bit_field/Android.bp:80:1: module "libbit_field" variant "android_x86_64_rlib_rlib-std": depends on disabled module "libbit_field_derive" 22:08:56 soong bootstrap failed with: exit status 1 #### failed to build some targets (03:13 (mm:ss)) #### |
解决方法:
根据Google官方文档,2021年6月22日之后的Android系统版本不支持在macOS系统上构建,我们只能构建之前的版本,或者之后发布的以前版本的补丁修复。目前测试最高只能编译到Android 12.0,Android 12.1编译不通过。
使用Android Studio阅读源码
如无特殊说明,以下命令执行都在所下载源码的根目录下。
1、生成工程信息文件
依次执行以下命令,生成IDE工程信息文件 android.ipr 和 android.iml
1 2 3 4 5 |
$ source build/envsetup.sh $ mmma development/tools/idegen $ development/tools/idegen/idegen.sh |
2、修改Android Studio配置
加大VM内存:
1 2 3 |
// Help > Edit Custom VM Options -Xms1g -Xmx5g |
修改文件大小限制,打开区分大小写选项
1 2 |
idea.max.intellisense.filesize=100000 idea.case.sensitive.fs=true |
3、重启
重启Android Studio使配置生效,然后用Android Studio打开第一步中生成的 android.ipr 文件,由于工程很大,需要较长的时间建立索引(我这台机器花了将近2个小时),请耐心等待。
4、创建JDK 1.8 (No Libraries)
此时当我们打开文件的时候,IDE会有以下提示
所以我们需要创建JDK 1.8 (No Libraries)
,点击 Configure...
,然后选择Add JDK
直接选择jdk1.8.0_181.jdk/Contents/Home
,open
之后JDK 1.8 (No Libraries)
就创建好了
然后我们需要在项目的SDK 配置中删掉刚才创建的JDK 1.8 (No Libraries)
中Classpath里面所有的jar,以保证跳转到AOSP的源码而不是系统安装的JDK中:
5、删除Modules中的dependencies
6、添加生成的资源文件ID目录
完成以上步骤然后同步一下,就可以愉快的在Android Studio中阅读Android源码了,相比于使用sublime
等纯文本工具阅读代码,这种方式的优势在于在跟进方法调用时很方便,可以直接control
+鼠标左键 进行代码跳转,而这种便捷的代价就是可能需要花上数天完成 环境配置 + 代码下载 + 源码整编。
参考链接
- ubuntu 20.04编译Android 11源代码&模拟器
- macOS Big Sur 编译Android11.0源码过程总结
- 代号、标记和 build 号
- AOSP 编译Android12源码全记录
- Android 开发者代码实验室
- macOS Sierra (10.12.3)上编译ARM版本Android 5.1.1_r38 (Lollipop)源代码
- How can I download and install macOS 10.12 SDK?
- Fix depends on disabled module "libbit_field_derive" error when building.
- 搭建编译环境
- [android-building] Platform development on MacOS isn't supported as of June 22, 2021.
- Can I download AOSP and compile the Android OS on a MacBook or other macOS device?
- Platform development on MacOS isn't supported as of June 22, 2021.
- Building Android 11 for x86 with ARM compatibility
- 使用VsCode调试Android Framework C/C++源代码