mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Initial checkin of grep-not script
llvm-svn: 6951
This commit is contained in:
parent
c9e6e7398e
commit
10e10f73c2
19
test/Scripts/grep-not
Executable file
19
test/Scripts/grep-not
Executable 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
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user