]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
test/system/systest_runnable.cc: debugging on start and end 2252/head
authorSamuel Just <sam.just@inktank.com>
Wed, 13 Aug 2014 20:57:13 +0000 (13:57 -0700)
committerSamuel Just <sam.just@inktank.com>
Wed, 13 Aug 2014 21:08:27 +0000 (14:08 -0700)
Signed-off-by: Samuel Just <sam.just@inktank.com>
src/test/system/systest_runnable.cc

index ec9b823db1474308e22b1539514df9d046b99721..55cab0aef9dd29d3d4850798b164c62b092e07e8 100644 (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;
 }