diff options
author | 2024-10-11 16:28:14 -0700 | |
---|---|---|
committer | 2024-10-11 17:19:33 -0700 | |
commit | 8ea25038bb1621d1c09e51c2fb70c3847c6bb50d (patch) | |
tree | 13a4f75d5cada33290d5592f5e23a0d21e9becbd /android/vintf_fragment_test.go | |
parent | 481b6699b43a7a5c86b84b9d52a7211b7ed8aeb1 (diff) |
Make vintf_fragment modules use the common arch
The common arch can easily be transitioned to, unlike real
architectures. vintf_fragments shouldn't need to be arch-variant, so
making them common arch makes them easier to use.
Bug: 372091092
Test: m nothing
Change-Id: I26dcc412917870ac394407911a7fd2d9a3430e95
Diffstat (limited to 'android/vintf_fragment_test.go')
-rw-r--r-- | android/vintf_fragment_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/vintf_fragment_test.go b/android/vintf_fragment_test.go index 8be534cf4..cd90b986c 100644 --- a/android/vintf_fragment_test.go +++ b/android/vintf_fragment_test.go @@ -29,7 +29,7 @@ func TestVintfManifestBuildAction(t *testing.T) { testResult := PrepareForTestWithAndroidBuildComponents.RunTestWithBp(t, bp) - vintfFragmentBuild := testResult.TestContext.ModuleForTests("test_vintf_fragment", "android_arm64_armv8-a").Rule("assemble_vintf") + vintfFragmentBuild := testResult.TestContext.ModuleForTests("test_vintf_fragment", "android_common").Rule("assemble_vintf") if !strings.Contains(vintfFragmentBuild.RuleParams.Command, "assemble_vintf") { t.Errorf("Vintf_manifest build command does not process with assemble_vintf : " + vintfFragmentBuild.RuleParams.Command) } |