From bb8aa27375b8d321ee18e917a06772d1efb103b4 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Tue, 22 Jul 2025 00:21:35 +0900 Subject: [PATCH] Rakefile: fix :test/:test_fips => :compile dependency Restore the dependency accidentally removed by commit 77133c6fc2af. --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 86c95201a..0ab056bec 100644 --- a/Rakefile +++ b/Rakefile @@ -10,13 +10,14 @@ rescue LoadError "install testing dependency gems." end +task :test => :compile Rake::TestTask.new do |t| t.test_files = FileList["test/**/test_*.rb"] t.warning = true end desc 'Run tests for fips' -task :test_fips do +task :test_fips => :compile do ENV['TEST_RUBY_OPENSSL_FIPS_ENABLED'] = 'true' Rake::Task['test_fips_internal'].invoke end