From b2c1fa8609172bceeafffdd772ccb590f1bb01d4 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Wed, 13 Aug 2014 13:57:13 -0700 Subject: [PATCH] test/system/systest_runnable.cc: debugging on start and end Signed-off-by: Samuel Just --- src/test/system/systest_runnable.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/system/systest_runnable.cc b/src/test/system/systest_runnable.cc index ec9b823db14..55cab0aef9d 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; } -- 2.47.3