diff options
author | 2024-12-17 10:42:42 -0800 | |
---|---|---|
committer | 2024-12-17 10:42:42 -0800 | |
commit | 6b7075f19fd4efa290179e894ae942e16ac9f699 (patch) | |
tree | dec563ce7eb60b0dbeb9913609181c596c70ac6d /apex/apex_test.go | |
parent | 85289cfc214bbd75feb976dcf87986a0a28415c0 (diff) |
Always install to out/target instead of out/soong/target
So that when using soong-only builds, we don't have to update
a bunch of tools and other parts of soong that expect files in
out/target.
Bug: 383892968
Test: m nothing --no-skip-soong-tests
Change-Id: Idba3b5a416e6ffff799ec3ce632a8a4fbafe341f
Diffstat (limited to 'apex/apex_test.go')
-rw-r--r-- | apex/apex_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex_test.go b/apex/apex_test.go index 81a62d9d9..90d19bc1d 100644 --- a/apex/apex_test.go +++ b/apex/apex_test.go @@ -4771,7 +4771,7 @@ func TestApexInVariousPartition(t *testing.T) { `) apex := ctx.ModuleForTests("myapex", "android_common_myapex").Module().(*apexBundle) - expected := "out/soong/target/product/test_device/" + tc.partition + "/apex" + expected := "out/target/product/test_device/" + tc.partition + "/apex" actual := apex.installDir.RelativeToTop().String() if actual != expected { t.Errorf("wrong install path. expected %q. actual %q", expected, actual) |