Files
build_soong/tests/mixed_mode_test.sh
Sam Delmerico cb93d29aa9 Revert "run bp2build in mixed_mode_test.sh"
Revert submission 2221893-silvermont-toolchain

Reason for revert: broke aosp_master build at b/249495321
Reverted Changes:
If32dbdab5:run bp2build in mixed_mode_test.sh
Ia96a2a82c:create cc_register_toolchains function
I074915cfa:create cc_register_toolchains function

Change-Id: I79717a23ebe2d7fe00b1b288acc96ce147e6ae92
2022-09-28 14:42:28 +00:00

21 lines
372 B
Bash
Executable File

#!/bin/bash -eu
set -o pipefail
# This test exercises mixed builds where Soong and Bazel cooperate in building
# Android.
#
# When the execroot is deleted, the Bazel server process will automatically
# terminate itself.
source "$(dirname "$0")/lib.sh"
function test_bazel_smoke {
setup
create_mock_bazel
STANDALONE_BAZEL=true run_bazel info
}
test_bazel_smoke