Ticket Created
over 3 years ago

WERETECH-12843

RFC: Allow to run tests verbose or not

Currently we can run the testsuite like so and we get a whole lot of output:

monkeydo ./bin/xxxx.test.prg devicename -t

Executing test TestModule.testName
PASS
==============================================================================

[snip, rinse repeat for every test]

RESULTS
Test: Status:
TestModule.testName PASS

[snip, rinse repeat for every test]

Ran x test


With smaller apps this is fine, but when the things become bigger, your screen gets filled with data.
My proposal is to add a -v to the command. With -v you get the output as described above. Without it you only get the following output:

RESULTS
Test: Status:
TestModule PASS
OtherTestModule PASS

Ran x tests

# When a failure occurs:
OtherTestModule.subtest FAILED


This would make it much easier to process big chunks of data.