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
15 lines
286 B
Text
15 lines
286 B
Text
TESTING "Time conversion" ./test-time
|
|
|
|
TEST "basic functionality" basic <<END
|
|
err: ECHO: .*: 0:00:00.000
|
|
err: ECHO: .*: 3:55:20.700
|
|
return: 0
|
|
END
|
|
|
|
TEST "frame rate dependent calculations" fps <<END
|
|
return: 0
|
|
END
|
|
|
|
TEST "ntsc drop-frame calculations" ntsc_drop_frame << END
|
|
return: 0
|
|
END
|