diff options
author | anozdrin/alik@ibm. <> | 2007-07-25 13:31:46 +0400 |
---|---|---|
committer | anozdrin/alik@ibm. <> | 2007-07-25 13:31:46 +0400 |
commit | 556ec10ea6ef5091599e9449ea1e3462f6f70cbb (patch) | |
tree | 74034226368f5a0e6ec6a4b1b595d18989c2cdb2 /server-tools | |
parent | 0a0f6d06bdcbfae25395be01c2b9fb2fd7287668 (diff) | |
download | mariadb-git-556ec10ea6ef5091599e9449ea1e3462f6f70cbb.tar.gz |
Temporary enable IM tests in 5.1-runtime tree.
Enable assert in Thread_registry.
Diffstat (limited to 'server-tools')
-rw-r--r-- | server-tools/instance-manager/thread_registry.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server-tools/instance-manager/thread_registry.cc b/server-tools/instance-manager/thread_registry.cc index b06c1240d92..700ed22afe7 100644 --- a/server-tools/instance-manager/thread_registry.cc +++ b/server-tools/instance-manager/thread_registry.cc @@ -67,8 +67,7 @@ Thread_registry::~Thread_registry() if (head.next != &head) log_error("Not all threads died properly\n"); /* All threads must unregister */ - // Disabled assert temporarily - BUG#28030 - // DBUG_ASSERT(head.next == &head); + DBUG_ASSERT(head.next == &head); pthread_mutex_unlock(&LOCK_thread_registry); pthread_cond_destroy(&COND_thread_registry_is_empty); |