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
43305056
Commit
43305056
authored
Oct 23, 2017
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not use File::Which, it is not always available.
parent
72407e54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
mysql-test/suite/mariabackup/suite.pm
mysql-test/suite/mariabackup/suite.pm
+4
-2
No files found.
mysql-test/suite/mariabackup/suite.pm
View file @
43305056
...
...
@@ -3,7 +3,6 @@ package My::Suite::MariaBackup;
@ISA
=
qw(My::Suite)
;
use
My::
Find
;
use
File::
Basename
;
use
File::
Which
;
use
strict
;
return
"
Not run for embedded server
"
if
$::opt_embedded_server
;
...
...
@@ -24,10 +23,13 @@ $ENV{XBSTREAM}= ::mtr_exe_maybe_exists(
$ENV
{
INNOBACKUPEX
}
=
"
$mariabackup_exe
--innobackupex
";
my
$have_qpress
=
index
(`
qpress 2>&1
`,"
Compression
")
>
0
;
sub
skip_combinations
{
my
%
skip
;
$skip
{'
include/have_file_key_management.inc
'}
=
'
needs file_key_management plugin
'
unless
$ENV
{
FILE_KEY_MANAGEMENT_SO
};
$skip
{'
compress_qpress.test
'}
=
'
needs qpress executable in PATH
'
unless
which
'
qpress
'
;
$skip
{'
compress_qpress.test
'}
=
'
needs qpress executable in PATH
'
unless
$have_qpress
;
%
skip
;
}
...
...
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