blob: b0062ac0b74f30b53496a07af12809e0dbf99f64 [file] [log] [blame]
Adam Nemet866797d2014-03-10 16:58:54 +00001#!/usr/bin/env python
2
Serge Guelton60ccceb2019-01-03 14:11:33 +00003from __future__ import print_function
4
Adam Nemet866797d2014-03-10 16:58:54 +00005import sys
6
7# Currently any print-out from the custom tool is interpreted as a crash
8# (i.e. test is still interesting)
9
NAKAMURA Takumi2b5925b2014-03-13 00:10:37 +000010print("Error: " + ' '.join(sys.argv[1:]))
Adam Nemet866797d2014-03-10 16:58:54 +000011
12sys.exit(1)