diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-19 08:04:30 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-19 08:04:30 -0400 |
commit | b1c6199ad82de2081f18eba931a787a25eb27ea7 (patch) | |
tree | fe4e69b4d1b71250b74eefbae7312f04bc060e53 /tests/tests.sh | |
parent | 55904f21f8565986fbd04cf0cfba486f936c08a6 (diff) | |
download | bfs-b1c6199ad82de2081f18eba931a787a25eb27ea7.tar.xz |
tests: Rename --noclean -> --no-clean
Diffstat (limited to 'tests/tests.sh')
-rwxr-xr-x | tests/tests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tests.sh b/tests/tests.sh index 61e4aba..282a428 100755 --- a/tests/tests.sh +++ b/tests/tests.sh @@ -94,7 +94,7 @@ function usage() { local pad=$(printf "%*s" ${#0} "") cat <<EOF Usage: ${GRN}$0${RST} [${BLU}--bfs${RST}=${MAG}path/to/bfs${RST}] [${BLU}--sudo${RST}[=${BLD}COMMAND${RST}]] [${BLU}--stop${RST}] - $pad [${BLU}--noclean${RST}] [${BLU}--update${RST}] [${BLU}--verbose${RST}[=${BLD}LEVEL${RST}]] [${BLU}--help${RST}] + $pad [${BLU}--no-clean${RST}] [${BLU}--update${RST}] [${BLU}--verbose${RST}[=${BLD}LEVEL${RST}]] [${BLU}--help${RST}] $pad [${BLU}--posix${RST}] [${BLU}--bsd${RST}] [${BLU}--gnu${RST}] [${BLU}--all${RST}] [${BLD}TEST${RST} [${BLD}TEST${RST} ...]] ${BLU}--bfs${RST}=${MAG}path/to/bfs${RST} @@ -106,7 +106,7 @@ Usage: ${GRN}$0${RST} [${BLU}--bfs${RST}=${MAG}path/to/bfs${RST}] [${BLU}--sudo$ ${BLU}--stop${RST} Stop when the first error occurs - ${BLU}--noclean${RST} + ${BLU}--no-clean${RST} Keep the test directories around after the run ${BLU}--update${RST} @@ -170,7 +170,7 @@ for arg; do --stop) STOP=yes ;; - --noclean) + --no-clean|--noclean) CLEAN= ;; --update) |