brintos

brintos / llvm-project-archived public Read only

0
0
Text · 238 B · 8f3e3c4 Raw
13 lines · python
1#!/usr/bin/env python2 3from __future__ import print_function4 5import sys6 7# Currently any print-out from the custom tool is interpreted as a crash8# (i.e. test is still interesting)9 10print("Error: " + " ".join(sys.argv[1:]))11 12sys.exit(1)13