diff options
| author | 2020-11-02 21:55:13 +0000 | |
|---|---|---|
| committer | 2020-11-02 21:55:13 +0000 | |
| commit | e1e33a25af532f3d2b7c52f7c6f039dce06c4895 (patch) | |
| tree | ed7ad0690804253d1a10d764186bc773b9140940 /java/java_test.go | |
| parent | aafd939b2ce081546f5314448b2d6e5797da0cd3 (diff) | |
| parent | 10ed76345143a3d293066149d2bde4dab0309c52 (diff) | |
Merge "Default to not creating stubs for droiddoc" into mainline-prod
Diffstat (limited to 'java/java_test.go')
| -rw-r--r-- | java/java_test.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/java/java_test.go b/java/java_test.go index 266cada35..fc8dd7ecb 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -1001,8 +1001,13 @@ func TestDroiddoc(t *testing.T) { "bar-doc/a.java": nil, "bar-doc/b.java": nil, }) + barDocModule := ctx.ModuleForTests("bar-doc", "android_common") + barDoc := barDocModule.Rule("javadoc") + notExpected := " -stubs " + if strings.Contains(barDoc.RuleParams.Command, notExpected) { + t.Errorf("bar-doc command contains flag %q to create stubs, but should not", notExpected) + } - barDoc := ctx.ModuleForTests("bar-doc", "android_common").Rule("javadoc") var javaSrcs []string for _, i := range barDoc.Inputs { javaSrcs = append(javaSrcs, i.Base()) @@ -1011,7 +1016,7 @@ func TestDroiddoc(t *testing.T) { t.Errorf("inputs of bar-doc must be []string{\"a.java\"}, but was %#v.", javaSrcs) } - aidl := ctx.ModuleForTests("bar-doc", "android_common").Rule("aidl") + aidl := barDocModule.Rule("aidl") if g, w := barDoc.Implicits.Strings(), aidl.Output.String(); !inList(w, g) { t.Errorf("implicits of bar-doc must contain %q, but was %q.", w, g) } |