2021-04-16 09:16:19 +02:00
|
|
|
#!/bin/bash -eu
|
2021-04-08 13:21:13 +02:00
|
|
|
|
2021-04-21 13:10:09 +02:00
|
|
|
set -o pipefail
|
|
|
|
|
2021-04-08 13:21:13 +02:00
|
|
|
TOP="$(readlink -f "$(dirname "$0")"/../../..)"
|
2021-11-22 18:30:08 +01:00
|
|
|
"$TOP/build/soong/tests/androidmk_test.sh"
|
2021-04-08 13:21:13 +02:00
|
|
|
"$TOP/build/soong/tests/bootstrap_test.sh"
|
|
|
|
"$TOP/build/soong/tests/mixed_mode_test.sh"
|
2021-04-21 13:10:09 +02:00
|
|
|
"$TOP/build/soong/tests/bp2build_bazel_test.sh"
|
2023-02-23 23:28:06 +01:00
|
|
|
"$TOP/build/soong/tests/persistent_bazel_test.sh"
|
2021-08-11 15:20:27 +02:00
|
|
|
"$TOP/build/soong/tests/soong_test.sh"
|
2023-06-07 20:03:06 +02:00
|
|
|
"$TOP/build/soong/tests/stale_metrics_files_test.sh"
|
2023-10-04 18:12:00 +02:00
|
|
|
"$TOP/build/soong/tests/symlink_forest_rerun_test.sh"
|
2023-07-17 20:21:32 +02:00
|
|
|
"$TOP/prebuilts/build-tools/linux-x86/bin/py3-cmd" "$TOP/build/bazel/ci/rbc_dashboard.py" aosp_arm64-userdebug
|
2022-06-14 12:08:51 +02:00
|
|
|
|
|
|
|
# The following tests build against the full source tree and don't rely on the
|
|
|
|
# mock client.
|
2022-11-30 06:16:30 +01:00
|
|
|
"$TOP/build/soong/tests/apex_comparison_tests.sh"
|
2022-12-06 00:26:36 +01:00
|
|
|
"$TOP/build/soong/tests/apex_comparison_tests.sh" "module_arm64only"
|
2023-07-01 00:53:10 +02:00
|
|
|
TEST_BAZEL=true extra_build_params=--bazel-mode-staging "$TOP/build/soong/tests/dcla_apex_comparison_test.sh"
|
2023-05-13 02:22:30 +02:00
|
|
|
#BUILD_BROKEN_DISABLE_BAZEL=true "$TOP/build/soong/tests/dcla_apex_comparison_test.sh"
|
2023-01-10 22:34:35 +01:00
|
|
|
"$TOP/build/soong/tests/apex_cc_module_arch_variant_tests.sh"
|
|
|
|
"$TOP/build/soong/tests/apex_cc_module_arch_variant_tests.sh" "aosp_arm" "armv7-a"
|
2023-02-25 01:45:19 +01:00
|
|
|
"$TOP/build/soong/tests/apex_cc_module_arch_variant_tests.sh" "aosp_cf_arm64_phone" "armv8-a" "cortex-a53"
|
2023-03-15 19:31:38 +01:00
|
|
|
|
2023-06-06 23:48:21 +02:00
|
|
|
"$TOP/build/bazel/ci/b_test.sh"
|
2023-10-04 06:14:28 +02:00
|
|
|
"$TOP/build/soong/tests/symlinks_path_test.sh"
|