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
e33e4276
Commit
e33e4276
authored
Nov 06, 2009
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge 5.1-release branch into MariaDB trunk.
parents
ad368a2b
3dcbe769
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
extra/libevent/event-internal.h
extra/libevent/event-internal.h
+5
-0
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+4
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+6
-0
No files found.
extra/libevent/event-internal.h
View file @
e33e4276
...
...
@@ -70,6 +70,11 @@ struct event_base {
/* Internal use only: Functions that might be missing from <sys/queue.h> */
#ifndef HAVE_TAILQFOREACH
/* These following macros are copied from BSD sys/queue.h
Copyright (c) 1991, 1993, The Regents of the University of California.
All rights reserved.
*/
#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL)
#define TAILQ_FIRST(head) ((head)->tqh_first)
#define TAILQ_END(head) NULL
#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
...
...
mysql-test/lib/mtr_cases.pm
View file @
e33e4276
...
...
@@ -249,6 +249,10 @@ sub collect_one_suite($)
$suitedir
=
my_find_dir
(
$::basedir
,
["
mysql-test/suite
",
"
mysql-test
",
"
share/mysql-test/suite
",
"
share/mysql-test
",
"
share/mysql/mysql-test/suite
",
"
share/mysql/mysql-test
",
# Look in storage engine specific suite dirs
"
storage/*/mysql-test-suites
"
],
...
...
mysql-test/mysql-test-run.pl
View file @
e33e4276
...
...
@@ -1000,6 +1000,12 @@ sub command_line_setup {
{
$basedir
=
dirname
(
$basedir
);
}
# For .deb, it's like RPM, but installed in /usr/share/mysql/mysql-test.
# So move up one more directory level yet.
if
(
!
$source_dist
and
!
-
d
"
$basedir
/bin
"
)
{
$basedir
=
dirname
(
$basedir
);
}
# Look for the client binaries directory
if
(
$path_client_bindir
)
...
...
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