summaryrefslogtreecommitdiff
path: root/tool/test-bundled-gems.rb
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-08-24 18:07:50 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-08-24 18:08:16 +0900
commit4a6b5f4622b5f33936fb1af7a8277335b7e15bbe (patch)
tree6066671415378ef25beab0ad780f37d3f5f435ba /tool/test-bundled-gems.rb
parent80597f25447cbf6788322fffb64ca5f6995f2c9a (diff)
downloadruby-4a6b5f4622b5f33936fb1af7a8277335b7e15bbe.tar.gz
Revert "tool/test-bundled-gems.rb: Use the bundled RBS code to test TypeProf"
This reverts commit 22deda43cb98aa3cee48d0bebbff7c4db1d7652a. It was incomplete. Sorry!
Diffstat (limited to 'tool/test-bundled-gems.rb')
-rw-r--r--tool/test-bundled-gems.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index 3f4c74b46a..d4c45332ab 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -17,13 +17,7 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
next if ARGV.any? {|pat| !File.fnmatch?(pat, gem)}
puts "#{github_actions ? "##[group]" : "\n"}Testing the #{gem} gem"
- test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib"
-
- if gem == "typeprof"
- #test_command << " -I../rbs/lib"
- end
-
- test_command << " #{rake} test"
+ test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake} test"
first_timeout = 600 # 10min
if gem == "rbs"