1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-04 01:23:45 +03:00

make S3 tests to run when S3 is statically linked

* use the environment variable HA_S3_SO, not a literal ha_s3 in cnf files
* make ConfigFactory to support empty option values
* update no_s3.result after MDEV-11412
This commit is contained in:
Sergei Golubchik
2020-09-10 12:12:47 +02:00
parent 5ad36aa3b8
commit 897b51db43
4 changed files with 3 additions and 5 deletions

View File

@ -347,7 +347,7 @@ sub resolve_at_variable {
or croak "There is no group named '$group_name' that ",
"can be used to resolve '$option_name' for test '$self->{testname}'";
my $value= $from_group->value($option_name);
my $value= $from_group->value($option_name) || '';
$res .= $before.$value;
}
$res .= $after;