diff options
author | Justin Yun <justinyun@google.com> | 2019-06-25 16:47:17 +0900 |
---|---|---|
committer | Justin Yun <justinyun@google.com> | 2019-07-09 08:57:05 +0000 |
commit | d5f6c8261ad2e3b57ddbf21d28bb530a476e2f2f (patch) | |
tree | e618748d70a6969ba93f48f9087b17a62591372c /android/paths_test.go | |
parent | cfec40c41b7a28f8096ec2a63cd0998fb31dd3d7 (diff) | |
download | build_soong-d5f6c8261ad2e3b57ddbf21d28bb530a476e2f2f.tar.gz build_soong-d5f6c8261ad2e3b57ddbf21d28bb530a476e2f2f.tar.bz2 build_soong-d5f6c8261ad2e3b57ddbf21d28bb530a476e2f2f.zip |
Rename product_services to system_ext
Bug: 134359158
Test: build and check if system_ext.img is created
Change-Id: Ice3229baf97a94c24a6eea22e7d4571941d7f843
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, |