[ruby/openssl] test/openssl/test_config: skip test_get_value_ENV on LibreSSL

LibreSSL has removed the feature to map environment variables onto the
"ENV" section.

https://github.com/ruby/openssl/commit/b70817faec
This commit is contained in:
Kazuki Yamaguchi 2020-02-22 04:58:08 +09:00
parent 0c66784602
commit 7c13d2b3cc
Notes: git 2021-03-16 20:38:56 +09:00

View File

@ -215,6 +215,9 @@ __EOC__
end
def test_get_value_ENV
# LibreSSL removed support for NCONF_get_string(conf, "ENV", str)
return if libressl?
key = ENV.keys.first
assert_not_nil(key) # make sure we have at least one ENV var.
assert_equal(ENV[key], @it.get_value('ENV', key))