From 03ed2081f98e784a38ead2bb6f3529c78633b8e7 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Fri, 22 May 2026 20:19:57 +0900 Subject: [PATCH] Rakefile: suppress "experimental" warning category in rake test --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 69256bd63..bf17c146b 100644 --- a/Rakefile +++ b/Rakefile @@ -14,6 +14,7 @@ task :test => :compile Rake::TestTask.new do |t| t.test_files = FileList["test/**/test_*.rb"] t.warning = true + t.ruby_opts = ["-W:no-experimental"] end desc 'Run tests for fips' @@ -30,6 +31,7 @@ Rake::TestTask.new(:test_fips_internal) do |t| 'test/openssl/test_ts.rb', ] t.warning = true + t.ruby_opts = ["-W:no-experimental"] end RDoc::Task.new do |rdoc|