From c12b515a54d0f90547314562b83d1cc638015be4 Mon Sep 17 00:00:00 2001 From: Jun Aruga Date: Thu, 21 Nov 2024 18:21:51 +0100 Subject: [PATCH] Add passing test files in FIPS. Add the test files that already passed in the FIPS cases. --- Rakefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Rakefile b/Rakefile index deb574ef8..a516ab7f8 100644 --- a/Rakefile +++ b/Rakefile @@ -27,13 +27,24 @@ end Rake::TestTask.new(:test_fips_internal) do |t| t.libs << 'test/openssl' t.test_files = FileList[ + 'test/openssl/test_bn.rb', + 'test/openssl/test_buffering.rb', + 'test/openssl/test_config.rb', + 'test/openssl/test_engine.rb', 'test/openssl/test_fips.rb', + 'test/openssl/test_ossl.rb', + 'test/openssl/test_pair.rb', 'test/openssl/test_pkey.rb', 'test/openssl/test_pkey_dh.rb', 'test/openssl/test_pkey_dsa.rb', 'test/openssl/test_pkey_ec.rb', 'test/openssl/test_pkey_rsa.rb', 'test/openssl/test_provider.rb', + 'test/openssl/test_random.rb', + 'test/openssl/test_ssl_session.rb', + 'test/openssl/test_x509attr.rb', + 'test/openssl/test_x509ext.rb', + 'test/openssl/test_x509store.rb', ] t.warning = true end