summaryrefslogtreecommitdiff
path: root/tool/test-bundled-gems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/test-bundled-gems.rb')
-rw-r--r--tool/test-bundled-gems.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index d9192f1bb9..3b9261d2ff 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -23,14 +23,12 @@ File.foreach("#{gem_dir}/bundled_gems") do |line|
first_timeout = 600 # 10min
if gem == "typeprof"
- raise "need to run rbs test suite before typeprof" unless File.readable?("#{gem_dir}/src/rbs/lib/rbs/parser.rb")
+ rbs_build_dir = 'ext/-test-/gems/rbs'
+ raise "need to run rbs test suite before typeprof" unless File.readable?("#{rbs_build_dir}/rbs_extension.so")
ENV["RUBYLIB"] = ["#{gem_dir}/src/rbs/lib", ENV.fetch("RUBYLIB", nil)].compact.join(":")
end
if gem == "rbs"
- racc = File.realpath("../../libexec/racc", __FILE__)
- pid = Process.spawn("#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{racc} -v -o lib/rbs/parser.rb lib/rbs/parser.y")
- Process.waitpid(pid)
test_command << " stdlib_test validate"
first_timeout *= 3