blob: 6779d8a959f6095875f29e7df34920a72df73231 [file] [log] [blame]
Rupert Shuttleworth755ceb02021-08-11 09:20:27 -04001#!/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
Usta Shrestha6e1aa782023-02-13 18:54:42 -050012 mkdir -p out/some_directory
13 touch out/some_directory/some_file
Rupert Shuttleworth755ceb02021-08-11 09:20:27 -040014
15 run_soong clean
16}
17
Usta Shresthaa4e0a0f2023-01-05 14:12:12 -050018scan_and_run_tests