2014-03-10 16:58:54 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# Currently any print-out from the custom tool is interpreted as a crash
|
|
|
|
# (i.e. test is still interesting)
|
|
|
|
|
2014-03-13 00:10:37 +00:00
|
|
|
print("Error: " + ' '.join(sys.argv[1:]))
|
2014-03-10 16:58:54 +00:00
|
|
|
|
|
|
|
sys.exit(1)
|