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:
@@ -305,7 +305,7 @@ var (
|
|||||||
|
|
||||||
func TestPythonModule(t *testing.T) {
|
func TestPythonModule(t *testing.T) {
|
||||||
config, buildDir := setupBuildEnv(t)
|
config, buildDir := setupBuildEnv(t)
|
||||||
defer tearDownBuildEnv()
|
defer tearDownBuildEnv(buildDir)
|
||||||
android.TestPreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
android.TestPreDepsMutators(func(ctx android.RegisterMutatorsContext) {
|
||||||
ctx.BottomUp("version_split", versionSplitMutator()).Parallel()
|
ctx.BottomUp("version_split", versionSplitMutator()).Parallel()
|
||||||
})
|
})
|
||||||
@@ -432,8 +432,8 @@ func setupBuildEnv(t *testing.T) (config android.Config, buildDir string) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func tearDownBuildEnv() {
|
func tearDownBuildEnv(buildDir string) {
|
||||||
os.RemoveAll(buildNamePrefix)
|
os.RemoveAll(buildDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
func findModule(ctx *blueprint.Context, name, variant string) blueprint.Module {
|
func findModule(ctx *blueprint.Context, name, variant string) blueprint.Module {
|
||||||
|
Reference in New Issue
Block a user