Initial checkin of grep-not script

llvm-svn: 6951
This commit is contained in:
Chris Lattner 2003-06-28 22:28:31 +00:00
parent c9e6e7398e
commit 10e10f73c2

19
test/Scripts/grep-not Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
#
# Program: grep-not
#
# Synopsis: Search the input to the program for a regular expression, working
# just like grep. The only difference is that we return success if
# the pattern was not found, and failure if it was. This is useful
# for TestRunner tests which want to make sure something DOES NOT
# occur in the output of a command.
#
# Syntax: The same as grep
if grep $@
then exit 1
else exit 0
fi