mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 10:11:09 -04:00
14 lines
229 B
Bash
14 lines
229 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Regression test for GNU grep.
|
||
|
|
|
||
|
|
: ${srcdir=.}
|
||
|
|
|
||
|
|
failures=0
|
||
|
|
|
||
|
|
# . . . and the following by Henry Spencer.
|
||
|
|
|
||
|
|
${AWK-awk} -f $srcdir/scriptgen.awk $srcdir/spencer2.tests > tmp2.script
|
||
|
|
|
||
|
|
sh tmp2.script && exit $failures
|
||
|
|
exit 1
|