diff options
Diffstat (limited to 'android/paths_test.go')
-rw-r--r-- | android/paths_test.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/android/paths_test.go b/android/paths_test.go index 7bcfe41d..8286e9a3 100644 --- a/android/paths_test.go +++ b/android/paths_test.go @@ -294,15 +294,15 @@ func TestPathForModuleInstall(t *testing.T) { out: "target/product/test_device/product/bin/my_test", }, { - name: "product_services binary", + name: "system_ext binary", ctx: &moduleInstallPathContextImpl{ baseModuleContext: baseModuleContext{ target: deviceTarget, - kind: productServicesSpecificModule, + kind: systemExtSpecificModule, }, }, in: []string{"bin", "my_test"}, - out: "target/product/test_device/product_services/bin/my_test", + out: "target/product/test_device/system_ext/bin/my_test", }, { @@ -354,11 +354,11 @@ func TestPathForModuleInstall(t *testing.T) { }, { - name: "product_services native test binary", + name: "system_ext native test binary", ctx: &moduleInstallPathContextImpl{ baseModuleContext: baseModuleContext{ target: deviceTarget, - kind: productServicesSpecificModule, + kind: systemExtSpecificModule, }, inData: true, }, @@ -415,16 +415,16 @@ func TestPathForModuleInstall(t *testing.T) { }, { - name: "sanitized product_services binary", + name: "sanitized system_ext binary", ctx: &moduleInstallPathContextImpl{ baseModuleContext: baseModuleContext{ target: deviceTarget, - kind: productServicesSpecificModule, + kind: systemExtSpecificModule, }, inSanitizerDir: true, }, in: []string{"bin", "my_test"}, - out: "target/product/test_device/data/asan/product_services/bin/my_test", + out: "target/product/test_device/data/asan/system_ext/bin/my_test", }, { @@ -479,11 +479,11 @@ func TestPathForModuleInstall(t *testing.T) { out: "target/product/test_device/data/asan/data/nativetest/my_test", }, { - name: "sanitized product_services native test binary", + name: "sanitized system_ext native test binary", ctx: &moduleInstallPathContextImpl{ baseModuleContext: baseModuleContext{ target: deviceTarget, - kind: productServicesSpecificModule, + kind: systemExtSpecificModule, }, inData: true, inSanitizerDir: true, |