1 //===- not.cpp - The 'not' testing tool -----------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/System/Path.h"
11 #include "llvm/System/Program.h"
12 #include "llvm/Support/raw_ostream.h"
15 int main(int argc
, const char **argv
) {
16 sys::Path Program
= sys::Program::FindProgramByName(argv
[1]);
19 int Result
= sys::Program::ExecuteAndWait(Program
, argv
+ 1, 0, 0, 0, 0,
22 errs() << "Error: " << ErrMsg
<< "\n";