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