Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
556ec10e
Commit
556ec10e
authored
Jul 25, 2007
by
anozdrin/alik@ibm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Temporary enable IM tests in 5.1-runtime tree.
Enable assert in Thread_registry.
parent
0a0f6d06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
10 deletions
+13
-10
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+12
-8
server-tools/instance-manager/thread_registry.cc
server-tools/instance-manager/thread_registry.cc
+1
-2
No files found.
mysql-test/t/disabled.def
View file @
556ec10e
...
...
@@ -11,14 +11,18 @@
##############################################################################
user_limits : Bug#23921 random failure of user_limits.test
im_options : Bug#20294 2006-07-24 stewart Instance manager test im_options fails randomly
im_daemon_life_cycle : Bug#20294 2007-05-14 alik Instance manager tests fail randomly
im_cmd_line : Bug#20294 2007-05-14 alik Instance manager tests fail randomly
im_utils : Bug#20294 2007-05-30 alik Instance manager tests fail randomly
im_instance_conf : Bug#20294 2007-05-30 alik Instance manager tests fail randomly
im_life_cycle : BUG#27851 Instance manager dies on ASSERT in ~Thread_registry() or from not being able to close a mysqld instance.
im_instance_conf : BUG#28743 Instance manager generates warnings in test suite
im_utils : BUG#28743 Instance manager generates warnings in test suite
#
# Temporary enable IM tests to catch the assert.
#
# im_options : Bug#20294 2006-07-24 stewart Instance manager test im_options fails randomly
# im_daemon_life_cycle : Bug#20294 2007-05-14 alik Instance manager tests fail randomly
# im_cmd_line : Bug#20294 2007-05-14 alik Instance manager tests fail randomly
# im_utils : Bug#20294 2007-05-30 alik Instance manager tests fail randomly
# im_instance_conf : Bug#20294 2007-05-30 alik Instance manager tests fail randomly
# im_life_cycle : BUG#27851 Instance manager dies on ASSERT in ~Thread_registry() or from not being able to close a mysqld instance.
# im_instance_conf : BUG#28743 Instance manager generates warnings in test suite
# im_utils : BUG#28743 Instance manager generates warnings in test suite
concurrent_innodb : BUG#21579 2006-08-11 mleich innodb_concurrent random failures with varying differences
ctype_big5 : BUG#26711 2007-06-21 Lars Test has never worked on Double Whopper
...
...
server-tools/instance-manager/thread_registry.cc
View file @
556ec10e
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment