# HG changeset patch # User Paul Boddie # Date 1484251791 -3600 # Node ID 09ae465e5515af1f5fb69e04be081a4599c7cf95 # Parent 8cfcd76cc65e25402658b91d4810157f4c4e4067 Added a test of raising SystemExit. diff -r 8cfcd76cc65e -r 09ae465e5515 tests/system.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/system.py Thu Jan 12 21:09:51 2017 +0100 @@ -0,0 +1,2 @@ +print "Raising SystemExit with value 2." +raise SystemExit(2)