blob: b408fd32582042e720bbd33cac7b64fc61f69a2c [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
Jingwen Chen8c523582021-06-01 11:19:53 +000017 STANDALONE_BAZEL=true run_bazel info
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020018}
19
20test_bazel_smoke