git: d80f249cbacc - stable/15 - grep/tests: Fix up the zgrep executable path in a newly added test
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 19 Jan 2026 17:47:04 UTC
The branch stable/15 has been updated by leres:
URL: https://cgit.FreeBSD.org/src/commit/?id=d80f249cbaccc3ef30714a08163db7e01e729663
commit d80f249cbaccc3ef30714a08163db7e01e729663
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-01-12 13:56:56 +0000
Commit: Craig Leres <leres@FreeBSD.org>
CommitDate: 2026-01-19 17:46:42 +0000
grep/tests: Fix up the zgrep executable path in a newly added test
Fixes: da5d94d29a5e ("Remove obsolete BUGS section from zgrep(1) man page, add test")
(cherry picked from commit 045112f148fa092c92ec53204708f638b226ff8f)
---
usr.bin/grep/tests/grep_freebsd_test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.bin/grep/tests/grep_freebsd_test.sh b/usr.bin/grep/tests/grep_freebsd_test.sh
index ae9a9c1274f3..338fc7a3ee1f 100755
--- a/usr.bin/grep/tests/grep_freebsd_test.sh
+++ b/usr.bin/grep/tests/grep_freebsd_test.sh
@@ -133,7 +133,7 @@ eflags_body()
printf "aaa bbb ccc\n111 222 333\ndon't match this line" > in
atf_check -o 'inline:aaa bbb ccc\n111 222 333\n' \
- /tmp/zgrep.sh -eaaa -e333 in
+ zgrep -eaaa -e333 in
}
atf_init_test_cases()