755ceb01e3
In particular, Bazel sometimes creates directories whose files cannot be deleted. Test: m clean used to fail after b build //system/timezone/apex:com.android.tzdata, but now it works Test: Added integration test which fails without this change Change-Id: I08c8feed21c31ec187fe40be513f7eb4865c8ac3
9 lines
256 B
Bash
Executable file
9 lines
256 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
set -o pipefail
|
|
|
|
TOP="$(readlink -f "$(dirname "$0")"/../../..)"
|
|
"$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/soong_test.sh"
|