diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-06-28 22:52:52 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-06-28 22:52:52 +0000 |
| commit | 9793cf6789280b0ef3270d64d97ded22689701f9 (patch) | |
| tree | 9e6ea98ad6c97a3408e6779dbdc74d1fa3e33bdd /llvm/test/Scripts | |
| parent | 11c21f3eb2251534a09e6d607e39e3732f5978b0 (diff) | |
| download | bcm5719-llvm-9793cf6789280b0ef3270d64d97ded22689701f9.tar.gz bcm5719-llvm-9793cf6789280b0ef3270d64d97ded22689701f9.zip | |
New script for testrunner programs
llvm-svn: 6956
Diffstat (limited to 'llvm/test/Scripts')
| -rwxr-xr-x | llvm/test/Scripts/not | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/Scripts/not b/llvm/test/Scripts/not new file mode 100755 index 00000000000..e3b1efe35c8 --- /dev/null +++ b/llvm/test/Scripts/not @@ -0,0 +1,12 @@ +#!/bin/sh +# +# Program: not +# +# Synopsis: Inverse the output of the program specified on the command line +# +# Syntax: not command <arguments> + +if "$@" +then exit 1 +else exit 0 +fi |

