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
07350a6c
Commit
07350a6c
authored
Jun 17, 2008
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
auto merge
parents
8342336f
3b5c3df2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
14 deletions
+36
-14
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+36
-14
No files found.
mysql-test/mysql-test-run.pl
View file @
07350a6c
...
...
@@ -110,6 +110,7 @@ our $glob_basedir;
our
$path_charsetsdir
;
our
$path_client_bindir
;
our
$path_client_libdir
;
our
$path_language
;
our
$path_timefile
;
our
$path_snapshot
;
...
...
@@ -623,6 +624,8 @@ sub command_line_setup () {
'
vardir=s
'
=>
\
$opt_vardir
,
'
benchdir=s
'
=>
\
$glob_mysql_bench_dir
,
'
mem
'
=>
\
$opt_mem
,
'
client-bindir=s
'
=>
\
$path_client_bindir
,
'
client-libdir=s
'
=>
\
$path_client_libdir
,
# Misc
'
report-features
'
=>
\
$opt_report_features
,
...
...
@@ -717,11 +720,19 @@ sub command_line_setup () {
#
# Look for the client binaries directory
$path_client_bindir
=
mtr_path_exists
("
$glob_basedir
/client_release
",
"
$glob_basedir
/client_debug
",
vs_config_dirs
('
client
',
''),
"
$glob_basedir
/client
",
"
$glob_basedir
/bin
");
if
(
$path_client_bindir
)
{
# --client-bindir=path set on command line, check that the path exists
$path_client_bindir
=
mtr_path_exists
(
$path_client_bindir
);
}
else
{
$path_client_bindir
=
mtr_path_exists
("
$glob_basedir
/client_release
",
"
$glob_basedir
/client_debug
",
vs_config_dirs
('
client
',
''),
"
$glob_basedir
/client
",
"
$glob_basedir
/bin
");
}
if
(
!
$opt_extern
)
{
...
...
@@ -1764,19 +1775,25 @@ sub environment_setup () {
my
@ld_library_paths
;
# --------------------------------------------------------------------------
# Setup LD_LIBRARY_PATH so the libraries from this distro/clone
# are used in favor of the system installed ones
# --------------------------------------------------------------------------
if
(
$source_dist
)
if
(
$path_client_libdir
)
{
push
(
@ld_library_paths
,
"
$glob_basedir
/libmysql/.libs/
",
"
$glob_basedir
/libmysql_r/.libs/
",
"
$glob_basedir
/zlib.libs/
");
# Use the --client-libdir passed on commandline
push
(
@ld_library_paths
,
"
$path_client_libdir
");
}
else
{
push
(
@ld_library_paths
,
"
$glob_basedir
/lib
");
# Setup LD_LIBRARY_PATH so the libraries from this distro/clone
# are used in favor of the system installed ones
if
(
$source_dist
)
{
push
(
@ld_library_paths
,
"
$glob_basedir
/libmysql/.libs/
",
"
$glob_basedir
/libmysql_r/.libs/
",
"
$glob_basedir
/zlib.libs/
");
}
else
{
push
(
@ld_library_paths
,
"
$glob_basedir
/lib
");
}
}
# --------------------------------------------------------------------------
...
...
@@ -2028,6 +2045,9 @@ sub environment_setup () {
{
$cmdline_mysqlbinlog
.=
"
--character-sets-dir=
$path_charsetsdir
";
}
# Always use the given tmpdir for the LOAD files created
# by mysqlbinlog
$cmdline_mysqlbinlog
.=
"
--local-load=
$opt_tmpdir
";
if
(
$opt_debug
)
{
...
...
@@ -5244,6 +5264,8 @@ Misc options
warnings | log-warnings Pass --log-warnings to mysqld
sleep=SECONDS Passed to mysqltest, will be used as fixed sleep time
client-bindir=PATH Path to the directory where client binaries are located
client-libdir=PATH Path to the directory where client libraries are located
Deprecated options
with-openssl Deprecated option for ssl
...
...
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