blob: 7dbafea01b6f855222099530ed738041bff0a263 [file] [log] [blame]
Lukacs T. Berki3b730c42021-04-08 13:21:13 +02001#!/bin/bash -eu
2
3# This test exercises mixed builds where Soong and Bazel cooperate in building
4# Android.
5#
6# When the execroot is deleted, the Bazel server process will automatically
7# terminate itself.
8
9source "$(dirname "$0")/lib.sh"
10
Lukacs T. Berki686965b2021-04-14 16:40:03 +020011function create_mock_bazel() {
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020012 copy_directory build/bazel
13
14 symlink_directory prebuilts/bazel
15 symlink_directory prebuilts/jdk
16
17 symlink_file WORKSPACE
18 symlink_file tools/bazel
19}
20
21function test_bazel_smoke {
22 setup
Lukacs T. Berki686965b2021-04-14 16:40:03 +020023 create_mock_bazel
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020024
25 tools/bazel info
26}
27
28test_bazel_smoke