From 0c66784602048fb4724e8d37038a0e6799f55d46 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Wed, 22 Apr 2020 21:46:39 +0900 Subject: [ruby/openssl] test/openssl/test_config: fix non-deterministic test case Sort keys of a section before comparing. The ordering is not part of the API. This can cause a test failure if we use OpenSSL's C implementation. Fixes: 2ad65b5f673f ("config: support .include directive", 2018-08-16) https://github.com/ruby/openssl/commit/259e6fd2dc --- test/openssl/test_config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/openssl/test_config.rb b/test/openssl/test_config.rb index 9a3a6a8043..a725add264 100644 --- a/test/openssl/test_config.rb +++ b/test/openssl/test_config.rb @@ -151,7 +151,7 @@ __EOC__ # Include a file by relative path c1 = OpenSSL::Config.parse(include_file) assert_equal(["default", "sec-a", "sec-b", "sec-main"], c1.sections.sort) - assert_equal(["file-main", "file-a", "file-b"], c1["default"].keys) + assert_equal(["file-a", "file-b", "file-main"], c1["default"].keys.sort) assert_equal({"a" => "123"}, c1["sec-a"]) assert_equal({"b" => "123"}, c1["sec-b"]) assert_equal({"main" => "123", "key_outside_section" => "value_a"}, c1["sec-main"]) -- cgit v1.2.3