diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-09-10 12:12:47 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-09-10 13:32:27 +0200 |
commit | 897b51db434d58e5cfe0079195bb81b7ff624fce (patch) | |
tree | abb1ec251d832b0db607e819b7976a9a567f56ba /mysql-test/lib/My | |
parent | 5ad36aa3b8cb02450e5ade50f13d4a7c8e68947b (diff) | |
download | mariadb-git-897b51db434d58e5cfe0079195bb81b7ff624fce.tar.gz |
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
Diffstat (limited to 'mysql-test/lib/My')
-rw-r--r-- | mysql-test/lib/My/ConfigFactory.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/My/ConfigFactory.pm b/mysql-test/lib/My/ConfigFactory.pm index db5c1aa1875..3249a06256c 100644 --- a/mysql-test/lib/My/ConfigFactory.pm +++ b/mysql-test/lib/My/ConfigFactory.pm @@ -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; |