New script for testrunner programs

llvm-svn: 6956
This commit is contained in:
Chris Lattner 2003-06-28 22:52:52 +00:00
parent 11c21f3eb2
commit 9793cf6789
1 changed files with 12 additions and 0 deletions

12
llvm/test/Scripts/not Executable file
View File

@ -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