aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2025-09-11 14:33:42 +0000
committerStefan Eßer <se@FreeBSD.org>2025-09-11 14:33:42 +0000
commit1a6ffcb27ddcfdc66c2ea58d6789b3d527f68ba9 (patch)
tree18c6a63741787821a39643f2ccf8b6cc39ff1185
parentfdc4a7c8012b214986cfa2e2fb6d99731f004b1b (diff)
usr.bin/gh-bc: fix invocation of test scripts
The “all.sh” script in version 7.1.0 accepts one less parameter for selecting the tests to be run.
-rw-r--r--usr.bin/gh-bc/tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/gh-bc/tests/Makefile b/usr.bin/gh-bc/tests/Makefile
index 464ae4b5d3c3..f3ef5a695e7d 100644
--- a/usr.bin/gh-bc/tests/Makefile
+++ b/usr.bin/gh-bc/tests/Makefile
@@ -56,10 +56,10 @@ PLAIN_TESTS_SH= bc_tests dc_tests
bc_tests.sh:
echo "#!/bin/sh" > ${.TARGET}
- echo "env LANG=C ${TESTSDIR}/tests/all.sh bc 1 1 0 0 0 bc" >> ${.TARGET}
+ echo "env LANG=C ${TESTSDIR}/tests/all.sh bc 1 1 0 0 bc" >> ${.TARGET}
dc_tests.sh:
echo "#!/bin/sh" > ${.TARGET}
- echo "env LANG=C ${TESTSDIR}/tests/all.sh dc 1 1 0 0 0 dc" >> ${.TARGET}
+ echo "env LANG=C ${TESTSDIR}/tests/all.sh dc 1 1 0 0 dc" >> ${.TARGET}
.include <bsd.test.mk>