diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-02-06 21:36:56 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-02-06 21:36:56 +0100 |
commit | 9c8c572fd327385b6c3801fbd8d1a9419484b0f4 (patch) | |
tree | 94abbbb8b599065dc825f1ae04a00d2890000b51 /mysql-test/mysql-test-run.pl | |
parent | e06c1c70e592f9b9aa476fe5bddafed1b22f9d36 (diff) | |
download | mariadb-git-9c8c572fd327385b6c3801fbd8d1a9419484b0f4.tar.gz |
per-file combinations
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 874b98d1ca2..3c254c89411 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -5101,8 +5101,8 @@ sub after_failure ($) { my $save_dir= "$opt_vardir/log/"; $save_dir.= $tinfo->{name}; # Add combination name if any - $save_dir.= "-$tinfo->{combination}" - if defined $tinfo->{combination}; + $save_dir.= '-' . join(',', sort @{$tinfo->{combinations}}) + if defined $tinfo->{combinations}; # Save savedir path for server $tinfo->{savedir}= $save_dir; |