Re: [libvirt] [PATCH 5/5] tests: uniformly report test failures

2013-02-25 Thread Michal Privoznik
On 23.02.2013 00:09, Eric Blake wrote: testutils.c likes to print summaries after a test completes, including if it failed. But if the test outright exit()s, this summary is skipped. Enforce that we return instead of exit. * cfg.mk (sc_prohibit_exit_tests): New syntax check. *

Re: [libvirt] [PATCH 5/5] tests: uniformly report test failures

2013-02-25 Thread Eric Blake
On 02/25/2013 03:38 AM, Michal Privoznik wrote: On 23.02.2013 00:09, Eric Blake wrote: testutils.c likes to print summaries after a test completes, including if it failed. But if the test outright exit()s, this summary is skipped. Enforce that we return instead of exit. ACK Thanks for

[libvirt] [PATCH 5/5] tests: uniformly report test failures

2013-02-22 Thread Eric Blake
testutils.c likes to print summaries after a test completes, including if it failed. But if the test outright exit()s, this summary is skipped. Enforce that we return instead of exit. * cfg.mk (sc_prohibit_exit_tests): New syntax check. * tests/commandhelper.c (main): Fix offenders. *