aboutsummaryrefslogtreecommitdiff
path: root/testsuite/egrep.tests
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/egrep.tests')
-rwxr-xr-xtestsuite/egrep.tests19
1 files changed, 0 insertions, 19 deletions
diff --git a/testsuite/egrep.tests b/testsuite/egrep.tests
deleted file mode 100755
index 61ce009d7..000000000
--- a/testsuite/egrep.tests
+++ /dev/null
@@ -1,19 +0,0 @@
1#!/bin/sh
2
3# egrep tests.
4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details.
6
7# AUDIT:
8
9[ ${#COMMAND} -eq 0 ] && COMMAND=egrep
10. testing.sh
11
12optional FEATURE_GREP_EGREP_ALIAS
13
14testing "grep is also egrep" "foo" "foo\n" "" "foo\nbar\n"
15testing "egrep is not case insensitive" "foo ; [ \$? -ne 0 ] && echo yes" \
16 "yes\n" "" "FOO\n"
17
18
19exit $FAILCOUNT