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