mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-14 14:02:47 +00:00
a360d4eef1
If the return value is an integer, treat it like an exit code. Otherwise, if it is None, treat it like 0. Otherwise treat it as an error. This behaviour is equivalent to that of sys.exit. Also fix our own sys.exit handling to match this, and add tests for everything. --HG-- extra : rebase_source : e36155d8fbe555e76effd182979cd6b1000a6ece
12 lines
164 B
Makefile
12 lines
164 B
Makefile
#T gmake skip
|
|
|
|
CMD = %pycmd asplode
|
|
PYCOMMANDPATH = $(TESTPATH) $(TESTPATH)/subdir
|
|
|
|
all:
|
|
$(CMD) 0
|
|
-$(CMD) 1
|
|
$(CMD) None
|
|
-$(CMD) not-an-integer
|
|
@echo TEST-PASS
|