• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash -eu
2
3set -o pipefail
4
5# 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
13function test_bazel_smoke {
14  setup
15  create_mock_bazel
16
17  run_bazel info
18}
19
20test_bazel_smoke
21