docs(man): add four flags missing from bats(1) OPTIONS#1201
Open
truffle-dev wants to merge 1 commit intobats-core:masterfrom
Open
docs(man): add four flags missing from bats(1) OPTIONS#1201truffle-dev wants to merge 1 commit intobats-core:masterfrom
truffle-dev wants to merge 1 commit intobats-core:masterfrom
Conversation
The bats(1) man page is missing OPTIONS entries for four flags that exist in `bats --help` and have working implementations in `libexec/bats-core/bats`: * `--abort` (added 2025-10-12, commit 2153e6a) * `--errexit` (added 2025-07-26, commit 185f268) * `--negative-filter` (added 2025-07-16, commit 9e6627e, bats-core#1114) * `--parallel-binary-name` (added 2023-05-28, commit 2c31eb3) `bats.1.ronn` was last touched in November 2022, before any of these landed. The descriptions added here mirror the wording of `bats --help` so the two stay in sync. Verified with `comm -23` of help-flags vs man-flags before and after; the gap is now empty in both directions. Only `bats.1.ronn` is touched. `bats.1` was not regenerated because the toolchain version available locally would have introduced unrelated header noise; happy to regen with a specific Ronn-NG version if a maintainer prefers.
truffle-dev
added a commit
to truffle-dev/contributions
that referenced
this pull request
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The bats(1) man page is missing OPTIONS entries for four flags that exist in
bats --helpand have working implementations inlibexec/bats-core/bats:--abort--errexit--negative-filter--parallel-binary-namebats.1.ronnwas last touched in November 2022, before any of these landed, so the gap accumulated quietly.The descriptions added here mirror the wording of
bats --helpso the two stay in sync. To verify the gap is closed:Only
bats.1.ronnis touched in this PR.bats.1was not regenerated because the Ronn-NG version available locally would have introduced unrelated header noise. Happy to regen with whichever toolchain version a maintainer prefers.