aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/grep/tests/spencer1.awk
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/grep/tests/spencer1.awk')
-rw-r--r--gnu/usr.bin/grep/tests/spencer1.awk14
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/usr.bin/grep/tests/spencer1.awk b/gnu/usr.bin/grep/tests/spencer1.awk
deleted file mode 100644
index b66b8f5f665d..000000000000
--- a/gnu/usr.bin/grep/tests/spencer1.awk
+++ /dev/null
@@ -1,14 +0,0 @@
-BEGIN {
- FS = "@";
- printf ("failures=0\n");
-}
-
-$0 !~ /^#/ && NF = 3 {
- printf ("echo '%s'|${GREP} -E -e '%s' > /dev/null 2>&1\n",$3, $2);
- printf ("if test $? -ne %s ; then\n", $1);
- printf ("\techo Spencer test \\#%d failed\n", ++n);
- printf ("\tfailures=1\n");
- printf ("fi\n");
-}
-
-END { printf ("exit $failures\n"); }