summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index c4427be33c..ce80beabdd 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1562,7 +1562,7 @@ class TestProcess < Test::Unit::TestCase
return unless Process.respond_to?(:setsid)
return unless Process.respond_to?(:getsid)
- IO.popen(["./ruby-trunk", "-e", <<EOS]) do|io|
+ IO.popen([RUBY, "-e", <<EOS]) do|io|
Marshal.dump(Process.getsid, STDOUT)
newsid = Process.setsid
Marshal.dump(newsid, STDOUT)