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
5d535879
Commit
5d535879
authored
Apr 16, 2011
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Plain Diff
merge from 5.1-mtr
parents
bba7b9ca
0c362694
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
mysql-test/lib/My/Find.pm
mysql-test/lib/My/Find.pm
+2
-4
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+5
-5
No files found.
mysql-test/lib/My/Find.pm
View file @
5d535879
# -*- cperl -*-
# -*- cperl -*-
# Copyright (
C) 2008 MySQL AB
# Copyright (
c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
#
#
# This program is free software; you can redistribute it and/or modify
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
...
@@ -28,8 +28,6 @@ use My::Platform;
...
@@ -28,8 +28,6 @@ use My::Platform;
use
base
qw(Exporter)
;
use
base
qw(Exporter)
;
our
@EXPORT
=
qw(my_find_bin my_find_dir my_find_file NOT_REQUIRED)
;
our
@EXPORT
=
qw(my_find_bin my_find_dir my_find_file NOT_REQUIRED)
;
our
$vs_config_dir
;
my
$bin_extension
=
"
.exe
"
if
IS_WINDOWS
;
my
$bin_extension
=
"
.exe
"
if
IS_WINDOWS
;
# Helper function to be used for fourth parameter to find functions
# Helper function to be used for fourth parameter to find functions
...
@@ -158,7 +156,7 @@ sub my_find_paths {
...
@@ -158,7 +156,7 @@ sub my_find_paths {
# User can select to look in a special build dir
# User can select to look in a special build dir
# which is a subdirectory of any of the paths
# which is a subdirectory of any of the paths
my
@extra_dirs
;
my
@extra_dirs
;
my
$build_dir
=
$
vs_config_dir
||
$ENV
{
MTR_VS_CONFIG
}
||
$ENV
{
MTR_BUILD_DIR
};
my
$build_dir
=
$
::opt_vs_config
||
$ENV
{
MTR_VS_CONFIG
}
||
$ENV
{
MTR_BUILD_DIR
};
push
(
@extra_dirs
,
$build_dir
)
if
defined
$build_dir
;
push
(
@extra_dirs
,
$build_dir
)
if
defined
$build_dir
;
if
(
defined
$extension
){
if
(
defined
$extension
){
...
...
mysql-test/mysql-test-run.pl
View file @
5d535879
#!/usr/bin/perl
#!/usr/bin/perl
# -*- cperl -*-
# -*- cperl -*-
# Copyright (c) 2004, 201
0
, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2004, 201
1
, Oracle and/or its affiliates. All rights reserved.
#
#
# This program is free software; you can redistribute it and/or
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# modify it under the terms of the GNU Library General Public
...
@@ -893,7 +893,7 @@ sub command_line_setup {
...
@@ -893,7 +893,7 @@ sub command_line_setup {
'
ssl|with-openssl
'
=>
\
$opt_ssl
,
'
ssl|with-openssl
'
=>
\
$opt_ssl
,
'
skip-ssl
'
=>
\
$opt_skip_ssl
,
'
skip-ssl
'
=>
\
$opt_skip_ssl
,
'
compress
'
=>
\
$opt_compress
,
'
compress
'
=>
\
$opt_compress
,
'
vs-config
'
=>
\
$opt_vs_config
,
'
vs-config
=s
'
=>
\
$opt_vs_config
,
# Max number of parallel threads to use
# Max number of parallel threads to use
'
parallel=s
'
=>
\
$opt_parallel
,
'
parallel=s
'
=>
\
$opt_parallel
,
...
@@ -1123,7 +1123,7 @@ sub command_line_setup {
...
@@ -1123,7 +1123,7 @@ sub command_line_setup {
chomp
;
chomp
;
# remove comments (# foo) at the beginning of the line, or after a
# remove comments (# foo) at the beginning of the line, or after a
# blank at the end of the line
# blank at the end of the line
s/(
+|^)#.*$//
;
s/(
\s
+|^)#.*$//
;
# If @ platform specifier given, use this entry only if it contains
# If @ platform specifier given, use this entry only if it contains
# @<platform> or @!<xxx> where xxx != platform
# @<platform> or @!<xxx> where xxx != platform
if
(
/\@.*/
)
if
(
/\@.*/
)
...
@@ -1134,8 +1134,8 @@ sub command_line_setup {
...
@@ -1134,8 +1134,8 @@ sub command_line_setup {
s/\@.*$//
;
s/\@.*$//
;
}
}
# remove whitespace
# remove whitespace
s/^
+//
;
s/^
\s+//
;
s/
+$//
;
s/
\s
+$//
;
# if nothing left, don't need to remember this line
# if nothing left, don't need to remember this line
if
(
$_
eq
""
)
{
if
(
$_
eq
""
)
{
next
;
next
;
...
...
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