23a4120c57
Also remove existing symlink_forest_version functionality. This remedies issues pertaining to b/300122962 - symlinks not clearing after a revert Timing wise - this doesn't present a performance regression on a clean build. When soong_build changes, it's considerably longer but no different from the time when symlink_forest_version is changed. Bug: 300288299 Test: build/soong/tests/symlink_forest_rerun_test.sh Change-Id: I0e95aac315dfea7ea3b8bb9a3eb0c6408300bd3b
27 lines
1.2 KiB
Bash
Executable file
27 lines
1.2 KiB
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
set -o pipefail
|
|
|
|
TOP="$(readlink -f "$(dirname "$0")"/../../..)"
|
|
"$TOP/build/soong/tests/androidmk_test.sh"
|
|
"$TOP/build/soong/tests/bootstrap_test.sh"
|
|
"$TOP/build/soong/tests/mixed_mode_test.sh"
|
|
"$TOP/build/soong/tests/bp2build_bazel_test.sh"
|
|
"$TOP/build/soong/tests/persistent_bazel_test.sh"
|
|
"$TOP/build/soong/tests/soong_test.sh"
|
|
"$TOP/build/soong/tests/stale_metrics_files_test.sh"
|
|
"$TOP/build/soong/tests/symlink_forest_rerun_test.sh"
|
|
"$TOP/prebuilts/build-tools/linux-x86/bin/py3-cmd" "$TOP/build/bazel/ci/rbc_dashboard.py" aosp_arm64-userdebug
|
|
|
|
# The following tests build against the full source tree and don't rely on the
|
|
# mock client.
|
|
"$TOP/build/soong/tests/apex_comparison_tests.sh"
|
|
"$TOP/build/soong/tests/apex_comparison_tests.sh" "module_arm64only"
|
|
TEST_BAZEL=true extra_build_params=--bazel-mode-staging "$TOP/build/soong/tests/dcla_apex_comparison_test.sh"
|
|
#BUILD_BROKEN_DISABLE_BAZEL=true "$TOP/build/soong/tests/dcla_apex_comparison_test.sh"
|
|
"$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"
|
|
"$TOP/build/soong/tests/apex_cc_module_arch_variant_tests.sh" "aosp_cf_arm64_phone" "armv8-a" "cortex-a53"
|
|
|
|
"$TOP/build/bazel/ci/b_test.sh"
|
|
|