1 #!/usr/bin/env python 2 3 import sys 4 5 # Currently any print-out from the custom tool is interpreted as a crash 6 # (i.e. test is still interesting) 7 8 print("Error: " + ' '.join(sys.argv[1:])) 9 10 sys.exit(1) 11