mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Only allow "suitename" to be used as a aptch if it has at least one
directory part
This commit is contained in:
parent
a9f2f98c4d
commit
32dcf68480
1 changed files with 6 additions and 1 deletions
|
@ -52,6 +52,7 @@ sub collect_option {
|
|||
}
|
||||
|
||||
use File::Basename;
|
||||
use File::Spec::Functions qw / splitdir /;
|
||||
use IO::File();
|
||||
use My::Config;
|
||||
use My::Platform;
|
||||
|
@ -249,8 +250,12 @@ sub collect_one_suite($)
|
|||
my $suitedir= "$::glob_mysql_test_dir"; # Default
|
||||
if ( $suite ne "main" )
|
||||
{
|
||||
if ( -d $suite ){
|
||||
# Allow suite to be path to "some dir" if $suite has at least
|
||||
# one directory part
|
||||
if ( -d $suite and splitdir($suite) > 1 ){
|
||||
$suitedir= $suite;
|
||||
mtr_report(" - from '$suitedir'");
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue