Adam Nemet | 866797d | 2014-03-10 16:58:54 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
Serge Guelton | 60ccceb | 2019-01-03 14:11:33 +0000 | [diff] [blame] | 3 | from __future__ import print_function |
| 4 | |
Adam Nemet | 866797d | 2014-03-10 16:58:54 +0000 | [diff] [blame] | 5 | import 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 Takumi | 2b5925b | 2014-03-13 00:10:37 +0000 | [diff] [blame] | 10 | print("Error: " + ' '.join(sys.argv[1:])) |
Adam Nemet | 866797d | 2014-03-10 16:58:54 +0000 | [diff] [blame] | 11 | |
| 12 | sys.exit(1) |