1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

WL#3949, fixed path to combination file

This commit is contained in:
skozlov/ksm@mysql.com/virtop.localdomain
2007-11-21 13:25:14 +03:00
parent 168abb0ce9
commit 95b65235ba

View File

@@ -218,14 +218,13 @@ sub collect_one_suite($$)
my $combinations = [];
my $suitedir= "$::glob_mysql_test_dir"; # Default
my $combination_file= "$::glob_mysql_test_dir/$combination_file";
if ( $suite ne "main" )
{
$suitedir= mtr_path_exists("$suitedir/suite/$suite",
"$suitedir/$suite");
mtr_verbose("suitedir: $suitedir");
$combination_file= "$suitedir/$combination_file";
}
my $combination_file= "$suitedir/$combination_file";
my $testdir= "$suitedir/t";
my $resdir= "$suitedir/r";