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
bb0d7ed4
Commit
bb0d7ed4
authored
Nov 28, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/work/my41-work
into neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint
parents
cc747a02
05eb5325
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
18 deletions
+7
-18
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+7
-18
No files found.
mysql-test/mysql-test-run.pl
View file @
bb0d7ed4
...
...
@@ -1248,26 +1248,15 @@ sub datadir_list_setup () {
sub
collect_mysqld_features
()
{
#
# Execute "mysqld --no-defaults --help --verbose", that will
# print out version and a list of all features and settings
#
my
$found_variable_list_start
=
0
;
my
$spec_file
=
"
$glob_mysql_test_dir
/mysqld.spec.$$
";
if
(
mtr_run
(
$exe_mysqld
,
["
--no-defaults
",
"
--verbose
",
"
--help
"],
"",
"
$spec_file
",
"
$spec_file
",
"")
!=
0
)
{
mtr_error
("
Failed to get version and list of features from %s
",
$exe_mysqld
);
}
my
$F
=
IO::
File
->
new
(
$spec_file
)
or
mtr_error
("
can't open file
\"
$spec_file
\"
: $!
");
#
# Execute "mysqld --no-defaults --help --verbose" to get a
# of all features and settings
#
my
$list
=
`
$exe_mysqld
--no-defaults --verbose --help
`;
while
(
my
$line
=
<
$F
>
)
foreach
my
$line
(
split
('
\
n
',
$list
)
)
{
# First look for version
if
(
!
$mysql_version_id
)
...
...
@@ -1320,7 +1309,7 @@ sub collect_mysqld_features () {
}
}
}
unlink
(
$spec_file
);
mtr_error
("
Could not find version of MySQL
")
unless
$mysql_version_id
;
mtr_error
("
Could not find variabes list
")
unless
$found_variable_list_start
;
...
...
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