2014-03-11 00:58:54 +08: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 08:10:37 +08:00
|
|
|
print("Error: " + ' '.join(sys.argv[1:]))
|
2014-03-11 00:58:54 +08:00
|
|
|
|
|
|
|
sys.exit(1)
|