Fix the issue that /tmp/soong_python_test* isn't being removed.
Bug: 62499851 Test: go test Change-Id: I84bd66cd1410dd9fc6add3ba5626d8ec4fe702d7
This commit is contained in:
parent
f49082afab
commit
aac67d38b2
1 changed files with 3 additions and 3 deletions
|
@ -305,7 +305,7 @@ var (
|
|||
|
||||
func TestPythonModule(t *testing.T) {
|
||||
config, buildDir := setupBuildEnv(t)
|
||||
defer tearDownBuildEnv()
|
||||
defer tearDownBuildEnv(buildDir)
|
||||
android.TestPreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
||||
ctx.BottomUp("version_split", versionSplitMutator()).Parallel()
|
||||
})
|
||||
|
@ -432,8 +432,8 @@ func setupBuildEnv(t *testing.T) (config android.Config, buildDir string) {
|
|||
return
|
||||
}
|
||||
|
||||
func tearDownBuildEnv() {
|
||||
os.RemoveAll(buildNamePrefix)
|
||||
func tearDownBuildEnv(buildDir string) {
|
||||
os.RemoveAll(buildDir)
|
||||
}
|
||||
|
||||
func findModule(ctx *blueprint.Context, name, variant string) blueprint.Module {
|
||||
|
|
Loading…
Reference in a new issue