test/system/systest_runnable.cc: debugging on start and end

Signed-off-by: Samuel Just <sam.just@inktank.com>
This commit is contained in:
Samuel Just 2014-08-13 13:57:13 -07:00
parent 239401db7b
commit b2c1fa8609

View File

@ -199,7 +199,9 @@ void *systest_runnable_pthread_helper(void *arg)
{
SysTestRunnable *st = static_cast < SysTestRunnable * >(arg);
st->update_id_str(true);
printf("%s: starting.\n", st->get_id_str());
int ret = st->run();
printf("%s: shutting down.\n", st->get_id_str());
return (void*)(uintptr_t)ret;
}