Add java/fuzz_test.go to test sources

Context
- fuzz_test.go is not listed in the soong/java test sources and is not
  running on CI.

Implementation
- Fix fuzz_test.go and add to test sources

Test: m
Change-Id: If2685c646dec4885fc42d7760992309bfa9da382
This commit is contained in:
Jihoon Kang
2022-11-17 20:25:08 +00:00
parent 775f2cb3cd
commit 5cb82e36be
2 changed files with 5 additions and 5 deletions

View File

@@ -65,9 +65,8 @@ func TestJavaFuzz(t *testing.T) {
osCommonTarget := result.Config.BuildOSCommonTarget.String()
osCommonTargetWithSan := osCommonTarget + "_asan" + "_fuzzer"
javac := result.ModuleForTests("foo", osCommonTargetWithSan).Rule("javac")
combineJar := result.ModuleForTests("foo", osCommonTargetWithSan).Description("for javac")
javac := result.ModuleForTests("foo", osCommonTarget).Rule("javac")
combineJar := result.ModuleForTests("foo", osCommonTarget).Description("for javac")
if len(javac.Inputs) != 1 || javac.Inputs[0].String() != "a.java" {
t.Errorf(`foo inputs %v != ["a.java"]`, javac.Inputs)
@@ -85,9 +84,9 @@ func TestJavaFuzz(t *testing.T) {
}
ctx := result.TestContext
foo := ctx.ModuleForTests("foo", osCommonTargetWithSan).Module().(*JavaFuzzLibrary)
foo := ctx.ModuleForTests("foo", osCommonTarget).Module().(*JavaFuzzLibrary)
expected := "libjni.so"
expected := "lib64/libjni.so"
if runtime.GOOS == "darwin" {
expected = "libjni.dylib"
}