• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash -eu
2
3set -o pipefail
4
5# Tests of Soong functionality
6
7source "$(dirname "$0")/lib.sh"
8
9function test_m_clean_works {
10  setup
11
12  mkdir -p out/some_directory
13  touch out/some_directory/some_file
14
15  run_soong clean
16}
17
18scan_and_run_tests