diff options
author | Liz Kammer <eakammer@google.com> | 2020-07-30 15:07:22 -0700 |
---|---|---|
committer | Liz Kammer <eakammer@google.com> | 2020-07-31 10:11:25 -0700 |
commit | 1e2ee12ff461624aae231a195476a81874fa9a58 (patch) | |
tree | 6b495419f71f0f2402d3a015fdbb1667fb4a5aa2 /java/java_test.go | |
parent | afb7c1b7e9d5d4680c15ea2dc515688d7dc7c4d7 (diff) |
Default to not creating stubs for droiddoc
This will allow us to remove `create_stubs: false` throughout the
codebase easily, then remove the functionslity to create stubs from
droiddoc.
Test: m docs
Test: m checkapi
Test: m updateapi
Bug: 144248501
Bug: 143136634
Change-Id: Ib95f68bc064fbe1475e4b25433bee6292bc005dc
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 582ebe945..34babfd5c 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -1107,8 +1107,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()) @@ -1117,7 +1122,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) } |