[llvm-commits] CVS: llvm/test/Scripts/not
Chris Lattner
lattner at cs.uiuc.edu
Sat Jun 28 17:54:13 PDT 2003
Changes in directory llvm/test/Scripts:
not added (r1.1)
---
Log message:
New script for testrunner programs
---
Diffs of the changes:
Index: llvm/test/Scripts/not
diff -c /dev/null llvm/test/Scripts/not:1.1
*** /dev/null Sat Jun 28 17:53:02 2003
--- llvm/test/Scripts/not Sat Jun 28 17:52:52 2003
***************
*** 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
More information about the llvm-commits
mailing list