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
75833ef9
Commit
75833ef9
authored
Jun 21, 2019
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.2' of github.com:MariaDB/server into 10.2
parents
821b866b
8d24f4e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
client/mysqltest.cc
client/mysqltest.cc
+9
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+2
-0
No files found.
client/mysqltest.cc
View file @
75833ef9
...
...
@@ -4643,8 +4643,16 @@ void do_perl(struct st_command *command)
str_to_file
(
temp_file_path
,
ds_script
.
str
,
ds_script
.
length
);
/* Use the same perl executable as the one that runs mysql-test-run.pl */
const
char
*
mtr_perl
=
getenv
(
"MTR_PERL"
);
if
(
!
mtr_perl
)
mtr_perl
=
"perl"
;
/* Format the "perl <filename>" command */
my_snprintf
(
buf
,
sizeof
(
buf
),
"perl %s"
,
temp_file_path
);
if
(
strchr
(
mtr_perl
,
' '
))
my_snprintf
(
buf
,
sizeof
(
buf
),
"
\"
%s
\"
%s"
,
mtr_perl
,
temp_file_path
);
else
my_snprintf
(
buf
,
sizeof
(
buf
),
"%s %s"
,
mtr_perl
,
temp_file_path
);
if
(
!
(
res_file
=
my_popen
(
buf
,
"r"
)))
{
...
...
mysql-test/mysql-test-run.pl
View file @
75833ef9
...
...
@@ -366,6 +366,8 @@ main();
sub
main
{
$ENV
{
MTR_PERL
}
=
$^X
;
# Default, verbosity on
report_option
('
verbose
',
0
);
...
...
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