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