diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2012-07-17 21:52:08 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2012-07-17 21:52:08 +0400 |
commit | 2368f8895d10a3d883a6a0ffe33b2b222caf7f1a (patch) | |
tree | 1f674b38702d87f5b13bbb587c8939bc842e9926 /unittest | |
parent | a49b4c970fe582919d89109e0cc3ebe2558269cd (diff) | |
download | mariadb-git-2368f8895d10a3d883a6a0ffe33b2b222caf7f1a.tar.gz |
MWL#182: Explain running statements
- Address feedback from the second code review.
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/sql/my_apc-t.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/unittest/sql/my_apc-t.cc b/unittest/sql/my_apc-t.cc index 3b837b4700e..8b599198302 100644 --- a/unittest/sql/my_apc-t.cc +++ b/unittest/sql/my_apc-t.cc @@ -90,7 +90,7 @@ void *test_apc_service_thread(void *ptr) apc_target.init(&target_mutex); apc_target.enable(); started= TRUE; - fprintf(stderr, "# test_apc_service_thread started\n"); + diag("test_apc_service_thread started"); while (!service_should_exit) { //apc_target.disable(); @@ -137,7 +137,7 @@ public: void *test_apc_requestor_thread(void *ptr) { my_thread_init(); - fprintf(stderr, "# test_apc_requestor_thread started\n"); + diag("test_apc_requestor_thread started"); THD my_thd; while (!requestors_should_exit) @@ -159,7 +159,7 @@ void *test_apc_requestor_thread(void *ptr) if (dst_value != 0) { - fprintf(stderr, "APC was done even though return value says it wasnt!\n"); + diag("APC was done even though return value says it wasnt!"); have_errors= true; } } @@ -167,13 +167,13 @@ void *test_apc_requestor_thread(void *ptr) { if (dst_value != src_value) { - fprintf(stderr, "APC was not done even though return value says it was!\n"); + diag("APC was not done even though return value says it was!"); have_errors= true; } } //my_sleep(300); } - fprintf(stderr, "# test_apc_requestor_thread exiting\n"); + diag("test_apc_requestor_thread exiting"); my_thread_end(); return NULL; } @@ -204,20 +204,20 @@ int main(int args, char **argv) for (i = 0; i < 15; i++) { my_sleep(500*1000); - fprintf(stderr, "# %d APCs served %d missed\n", apcs_served, apcs_missed); + diag("%d APCs served %d missed", apcs_served, apcs_missed); } - fprintf(stderr, "# Shutting down requestors\n"); + diag("Shutting down requestors"); requestors_should_exit= TRUE; for (i = 0; i < N_THREADS; i++) pthread_join(request_thr[i], NULL); - fprintf(stderr, "# Shutting down service\n"); + diag("Shutting down service"); service_should_exit= TRUE; pthread_join(service_thr, NULL); mysql_mutex_destroy(&apc_counters_mutex); - fprintf(stderr, "# Done.\n"); + diag("Done"); my_thread_end(); my_thread_global_end(); |