xref: /llvm-project/llvm/test/BugPoint/compile-custom.ll.py (revision b71edfaa4ec3c998aadb35255ce2f60bba2940b0)
1#!/usr/bin/env python
2
3from __future__ import print_function
4
5import sys
6
7# Currently any print-out from the custom tool is interpreted as a crash
8# (i.e. test is still interesting)
9
10print("Error: " + " ".join(sys.argv[1:]))
11
12sys.exit(1)
13