blob: 61ce009d7e8dac2d4745016026c64bde7d079e2e [file] [log] [blame]
Bernhard Reutner-Fischerb47a74f2005-09-23 15:44:46 +00001#!/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
Rob Landley48c61572005-11-07 08:50:53 +000012optional FEATURE_GREP_EGREP_ALIAS
Bernhard Reutner-Fischerb47a74f2005-09-23 15:44:46 +000013
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