git: 1a6ffcb27ddc - main - usr.bin/gh-bc: fix invocation of test scripts
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 11 Sep 2025 14:36:20 UTC
The branch main has been updated by se: URL: https://cgit.FreeBSD.org/src/commit/?id=1a6ffcb27ddcfdc66c2ea58d6789b3d527f68ba9 commit 1a6ffcb27ddcfdc66c2ea58d6789b3d527f68ba9 Author: Stefan Eßer <se@FreeBSD.org> AuthorDate: 2025-09-11 14:33:42 +0000 Commit: Stefan Eßer <se@FreeBSD.org> CommitDate: 2025-09-11 14:33:42 +0000 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. --- usr.bin/gh-bc/tests/Makefile | 4 ++-- 1 file 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>