git: f5138631fb6f - main - uudecode: use SRCDIR in the regression test
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 28 Mar 2022 19:02:02 UTC
The branch main has been updated by pstef: URL: https://cgit.FreeBSD.org/src/commit/?id=f5138631fb6f9dc73d696560caa006f3df714b9a commit f5138631fb6f9dc73d696560caa006f3df714b9a Author: Piotr Pawel Stefaniak <pstef@FreeBSD.org> AuthorDate: 2022-03-28 18:50:40 +0000 Commit: Piotr Pawel Stefaniak <pstef@FreeBSD.org> CommitDate: 2022-03-28 19:01:28 +0000 uudecode: use SRCDIR in the regression test Fixes: 9f3203c00314 "uudecode: correct error message" --- usr.bin/uuencode/tests/regress.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/uuencode/tests/regress.sh b/usr.bin/uuencode/tests/regress.sh index 630cfb525991..143de3de623c 100644 --- a/usr.bin/uuencode/tests/regress.sh +++ b/usr.bin/uuencode/tests/regress.sh @@ -8,6 +8,6 @@ REGRESSION_TEST(`traditional', `uuencode regress.in <${SRCDIR}/regress.in') REGRESSION_TEST(`base64', `uuencode -m regress.in <${SRCDIR}/regress.in') # was uudecode: stdin: /dev/null: character out of range: [33-96] -REGRESSION_TEST(`153276', `uudecode -o /dev/null < regress.153276.in 2>&1') +REGRESSION_TEST(`153276', `uudecode -o /dev/null <${SRCDIR}/regress.153276.in 2>&1') REGRESSION_END()