blob: f6fffad4b26da21d758c87d7f6a9890b54e45833 [file] [log] [blame]
Lukacs T. Berki3b730c42021-04-08 13:21:13 +02001#!/bin/bash -eu
2
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -04003set -o pipefail
4
Lukacs T. Berki3b730c42021-04-08 13:21:13 +02005# This test exercises mixed builds where Soong and Bazel cooperate in building
6# Android.
7#
8# When the execroot is deleted, the Bazel server process will automatically
9# terminate itself.
10
11source "$(dirname "$0")/lib.sh"
12
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020013function test_bazel_smoke {
14 setup
Lukacs T. Berki686965b2021-04-14 16:40:03 +020015 create_mock_bazel
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020016
Sam Delmerico73d6bcc2022-09-20 15:31:37 -040017 run_soong bp2build
18
19 run_bazel info --config=bp2build
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020020}
21
22test_bazel_smoke