summaryrefslogtreecommitdiff
path: root/java/fuzz_test.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2025-02-19 15:17:02 -0800
committer Colin Cross <ccross@android.com> 2025-02-20 13:06:13 -0800
commit8ff4af316f189fe278b8ef565591faef516918ac (patch)
treeff1df6740ace32d57c6a5dd908b51c667bab8a9e /java/fuzz_test.go
parent13e1782071268a7486ac06676c2c5ed34798448c (diff)
Remove RELEASE_USE_TRANSITIVE_JARS_IN_CLASSPATH
RELEASE_USE_TRANSITIVE_JARS_IN_CLASSPATH is set to true in all release configs in main, Soong can stop checking the value. This implicitly enables the flag for all of the tests in Soong, which requires updating paths in many of them. Test: builds Change-Id: I2e0d6cd109e1aa7a1163116fa1210e3f42f57878
Diffstat (limited to 'java/fuzz_test.go')
-rw-r--r--java/fuzz_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/fuzz_test.go b/java/fuzz_test.go
index 8cbe873ad..735b8da93 100644
--- a/java/fuzz_test.go
+++ b/java/fuzz_test.go
@@ -72,8 +72,8 @@ func TestJavaFuzz(t *testing.T) {
}
baz := result.ModuleForTests(t, "baz", osCommonTarget).Rule("javac").Output.String()
- barOut := filepath.Join("out", "soong", ".intermediates", "bar", osCommonTarget, "javac-header", "bar.jar")
- bazOut := filepath.Join("out", "soong", ".intermediates", "baz", osCommonTarget, "javac-header", "baz.jar")
+ barOut := filepath.Join("out", "soong", ".intermediates", "bar", osCommonTarget, "local-javac-header", "bar.jar")
+ bazOut := filepath.Join("out", "soong", ".intermediates", "baz", osCommonTarget, "local-javac-header", "baz.jar")
android.AssertStringDoesContain(t, "foo classpath", javac.Args["classpath"], barOut)
android.AssertStringDoesContain(t, "foo classpath", javac.Args["classpath"], bazOut)