diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-28 23:32:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-28 23:32:28 +0000 |
commit | 3f6795e5eab1992d7d296faa43b8d7fe720e750d (patch) | |
tree | a7aa6cd70fd8912507969221d11a4f89e8c4c3e3 /test/Scripts | |
parent | 060c1f816cdb15f3d1ce926cf48f89d3535ab412 (diff) | |
download | external_llvm-3f6795e5eab1992d7d296faa43b8d7fe720e750d.zip external_llvm-3f6795e5eab1992d7d296faa43b8d7fe720e750d.tar.gz external_llvm-3f6795e5eab1992d7d296faa43b8d7fe720e750d.tar.bz2 |
Remove obsolete script
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Scripts')
-rwxr-xr-x | test/Scripts/grep-not | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/Scripts/grep-not b/test/Scripts/grep-not deleted file mode 100755 index 9ea9bf0..0000000 --- a/test/Scripts/grep-not +++ /dev/null @@ -1,19 +0,0 @@ -#!/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 - - - |