From: Samuel Just Date: Wed, 13 Aug 2014 20:57:13 +0000 (-0700) Subject: test/system/systest_runnable.cc: debugging on start and end X-Git-Tag: v0.84~7^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b2c1fa8609172bceeafffdd772ccb590f1bb01d4;p=ceph.git test/system/systest_runnable.cc: debugging on start and end Signed-off-by: Samuel Just --- diff --git a/src/test/system/systest_runnable.cc b/src/test/system/systest_runnable.cc index ec9b823db147..55cab0aef9dd 100644 --- a/src/test/system/systest_runnable.cc +++ b/src/test/system/systest_runnable.cc @@ -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; }