blob: 54f06897c4f45179fb93baa9a31c87903f7eb080 [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
11function setup_bazel() {
12 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
23 setup_bazel
24
25 tools/bazel info
26}
27
28test_bazel_smoke