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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e32d6c83
Commit
e32d6c83
authored
Mar 03, 2008
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply patch
mysql-test/mysql-test-run.pl: Apply patch for bug#34995
parent
020d99ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
14 deletions
+34
-14
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+34
-14
No files found.
mysql-test/mysql-test-run.pl
View file @
e32d6c83
...
...
@@ -65,6 +65,7 @@ our $basedir;
our
$path_charsetsdir
;
our
$path_client_bindir
;
our
$path_client_libdir
;
our
$path_language
;
our
$path_current_testlog
;
...
...
@@ -358,6 +359,8 @@ sub command_line_setup {
'
tmpdir=s
'
=>
\
$opt_tmpdir
,
'
vardir=s
'
=>
\
$opt_vardir
,
'
mem
'
=>
\
$opt_mem
,
'
client-bindir=s
'
=>
\
$path_client_bindir
,
'
client-libdir=s
'
=>
\
$path_client_libdir
,
# Misc
'
report-features
'
=>
\
$opt_report_features
,
...
...
@@ -426,11 +429,19 @@ sub command_line_setup {
#
# Look for the client binaries directory
$path_client_bindir
=
mtr_path_exists
("
$basedir
/client_release
",
"
$basedir
/client_debug
",
vs_config_dirs
('
client
',
''),
"
$basedir
/client
",
"
$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
("
$basedir
/client_release
",
"
$basedir
/client_debug
",
vs_config_dirs
('
client
',
''),
"
$basedir
/client
",
"
$basedir
/bin
");
}
# Look for language files and charsetsdir, use same share
my
$path_share
=
mtr_path_exists
("
$basedir
/share/mysql
",
...
...
@@ -1066,19 +1077,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
,
"
$basedir
/libmysql/.libs/
",
"
$basedir
/libmysql_r/.libs/
",
"
$basedir
/zlib.libs/
");
# Use the --client-libdir passed on commandline
push
(
@ld_library_paths
,
"
$path_client_libdir
");
}
else
{
push
(
@ld_library_paths
,
"
$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
,
"
$basedir
/libmysql/.libs/
",
"
$basedir
/libmysql_r/.libs/
",
"
$basedir
/zlib.libs/
");
}
else
{
push
(
@ld_library_paths
,
"
$basedir
/lib
");
}
}
# --------------------------------------------------------------------------
...
...
@@ -3614,6 +3631,9 @@ Options to control directories to use
for tmpfs (/dev/shm)
The option can also be set using environment
variable MTR_MEM=[DIR]
client-bindir=PATH Path to the directory where client binaries are located
client-libdir=PATH Path to the directory where client libraries are located
Options to control what test suites or cases to run
...
...
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