Junio C Hamano <gitster@xxxxxxxxx> writes: > Patrick Steinhardt <ps@xxxxxx> writes: > >>> > To ensure no new builtins are added without documentation, add an >>> > allowlist: t0450/adoc-missing... >>> > ... >>> > t/t0450-txt-doc-vs-help.sh | 8 +++++++- >>> > 1 file changed, 7 insertions(+), 1 deletion(-) >>> >>> Forgot to add something? >> >> Indeed. Toon is currently out of office, so I had a look at what it >> takes. The below patch is what I ended up with -- note that I also had >> to reverse the `grep` condition to set the prereq in the else branch. >> >> Let me know whether you're fine with just squashing these changes in or >> whether I shall send another version. > > I've marked this topic in the What's cooking report to be expecting > a reroll after 2.51 final gets tagged, which has now done. If the > fixup! sitting at the tip of the topic is good to Toon's eyes, then > I can squash it in and mark the topic for 'next' without waiting for > a reroll. If not, please do send in a hopefully small and final > update. > > Thanks. Toon, did you have a chance to take a look at Patrick's update? Can we move forward by squashing it into your [2/2]? Thanks. > > From: Patrick Steinhardt <ps@xxxxxx> > Date: Tue, 12 Aug 2025 14:52:31 +0200 > Subject: [PATCH] fixup! t0450: add allowlist for builtins with missing .adoc > > --- > t/t0450-txt-doc-vs-help.sh | 17 ++++++++++------- > t/t0450/adoc-missing | 9 +++++++++ > 2 files changed, 19 insertions(+), 7 deletions(-) > create mode 100644 t/t0450/adoc-missing > > diff --git a/t/t0450-txt-doc-vs-help.sh b/t/t0450-txt-doc-vs-help.sh > index 980130be78..e12e18f97f 100755 > --- a/t/t0450-txt-doc-vs-help.sh > +++ b/t/t0450-txt-doc-vs-help.sh > @@ -112,16 +112,19 @@ do > adoc="$(builtin_to_adoc "$builtin")" && > preq="$(echo BUILTIN_ADOC_$builtin | tr '[:lower:]-' '[:upper:]_')" && > > - # if and only if *.adoc is missing, builtin shall be listed in t0450/adoc-missing > - result=success > + # If and only if *.adoc is missing, builtin shall be listed in t0450/adoc-missing. > if grep -q "^$builtin$" "$TEST_DIRECTORY"/t0450/adoc-missing > then > + test_expect_success "$builtin appropriately marked as not having .adoc" ' > + ! test -f "$adoc" > + ' > + else > test_set_prereq "$preq" > - result=failure > - fi && > - test_expect_$result "$builtin appropriately marked as having missing .adoc" ' > - test -f "$adoc" > - ' > + > + test_expect_success "$builtin appropriately marked as having .adoc" ' > + test -f "$adoc" > + ' > + fi > > # *.adoc output assertions > test_expect_success "$preq" "$builtin *.adoc SYNOPSIS has dashed labels" ' > diff --git a/t/t0450/adoc-missing b/t/t0450/adoc-missing > new file mode 100644 > index 0000000000..1ec9f8dcf3 > --- /dev/null > +++ b/t/t0450/adoc-missing > @@ -0,0 +1,9 @@ > +checkout--worker > +merge-ours > +merge-recursive > +merge-recursive-ours > +merge-recursive-theirs > +merge-subtree > +pickaxe > +submodule--helper > +upload-archive--writer