without that check, in theory our test runner will tolerate a non-zero return value, like throwing or failing an assert, which is not what we want.... guess these happenend to get in by forgetting to add this check when switching a test from PLANNED to TEST
13 lines
216 B
Text
13 lines
216 B
Text
TESTING "Regression Tests: Known bugs" ./test-suite --group=regressiongui
|
|
|
|
|
|
|
|
TEST "Smile test" HelloBug_test <<END
|
|
err: hello sunshine
|
|
return: 0
|
|
END
|
|
|
|
|
|
PLANNED "Suicide test" ElectricSuicide_test <<END
|
|
return: 42
|
|
END
|