| #===----------------------------------------------------------------------===## |
| # The LLVM Compiler Infrastructure |
| # This file is dual licensed under the MIT and the University of Illinois Open |
| # Source Licenses. See LICENSE.TXT for details. |
| #===----------------------------------------------------------------------===## |
| """not.py is a utility for inverting the return code of commands. |
| It acts similar to llvm/utils/not. |
| ex: python /path/to/not.py ' echo hello |
| if len(argv) > 0 and argv[0] == '--crash': |
| prog = distutils.spawn.find_executable(argv[0]) |
| sys.stderr.write('Failed to find program %s' % argv[0]) |
| rc = subprocess.call(argv) |
| return 0 if expectCrash else 1 |
| if __name__ == '__main__': |