diff options
Diffstat (limited to 'android/module_test.go')
-rw-r--r-- | android/module_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/android/module_test.go b/android/module_test.go index d5bf94137..6e6d44909 100644 --- a/android/module_test.go +++ b/android/module_test.go @@ -327,21 +327,21 @@ func TestInstall(t *testing.T) { outputRule := func(name string) TestingBuildParams { return module(name, false).Output(name) } installRule := func(name string) TestingBuildParams { - return module(name, false).Output(filepath.Join("out/soong/target/product/test_device/system", name)) + return module(name, false).Output(filepath.Join("out/target/product/test_device/system", name)) } symlinkRule := func(name string) TestingBuildParams { - return module(name, false).Output(filepath.Join("out/soong/target/product/test_device/system/symlinks", name)) + return module(name, false).Output(filepath.Join("out/target/product/test_device/system/symlinks", name)) } hostOutputRule := func(name string) TestingBuildParams { return module(name, true).Output(name) } hostInstallRule := func(name string) TestingBuildParams { - return module(name, true).Output(filepath.Join("out/soong/host/linux-x86", name)) + return module(name, true).Output(filepath.Join("out/host/linux-x86", name)) } hostSymlinkRule := func(name string) TestingBuildParams { - return module(name, true).Output(filepath.Join("out/soong/host/linux-x86/symlinks", name)) + return module(name, true).Output(filepath.Join("out/host/linux-x86/symlinks", name)) } assertInputs := func(params TestingBuildParams, inputs ...Path) { |