summaryrefslogtreecommitdiff
path: root/runruby.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-06 01:21:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-06 01:21:48 +0000
commit8f676986bec676ed88f26c2f3721aff87ee00d42 (patch)
tree3d2938cc080e3c340c6e68761a231a7b272a41bb /runruby.rb
parentf24e3f227114441e06d4fff38033a6354fbf660b (diff)
* runruby.rb: added --pure (turned on by default) and --debugger
options. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'runruby.rb')
-rwxr-xr-xrunruby.rb25
1 files changed, 19 insertions, 6 deletions
diff --git a/runruby.rb b/runruby.rb
index 3dbc4b686c..b1b8000389 100755
--- a/runruby.rb
+++ b/runruby.rb
@@ -1,5 +1,6 @@
#!./miniruby
+pure = true
while arg = ARGV[0]
break ARGV.shift if arg == '--'
/\A--([-\w]+)(?:=(.*))?\z/ =~ arg or break
@@ -12,6 +13,10 @@ while arg = ARGV[0]
archdir = value
when re =~ "extout"
extout = value
+ when re =~ "pure"
+ pure = (value != "no")
+ when re =~ "debugger"
+ debugger = value ? (value.split unless value == "no") : %w"gdb --args"
else
break
end
@@ -32,16 +37,17 @@ unless File.exist?(ruby)
abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n"
end
-libs = [abs_archdir, File.expand_path("lib", srcdir)]
+libs = [abs_archdir]
if extout
abs_extout = File.expand_path(extout)
libs << File.expand_path("common", abs_extout) << File.expand_path(RUBY_PLATFORM, abs_extout)
end
+libs << File.expand_path("lib", srcdir)
config["bindir"] = abs_archdir
ENV["RUBY"] = File.expand_path(ruby)
ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR)
-if e = ENV["RUBYLIB"]
+if !pure and e = ENV["RUBYLIB"]
libs |= e.split(File::PATH_SEPARATOR)
end
ENV["RUBYLIB"] = $:.replace(libs).join(File::PATH_SEPARATOR)
@@ -55,8 +61,15 @@ if File.file?(libruby_so)
ENV["LD_PRELOAD"] = [libruby_so, ENV["LD_PRELOAD"]].compact.join(' ')
end
end
+begin
+ open("puretest.rb", IO::EXCL|IO::CREAT|IO::WRONLY) do |f|
+ f.puts('$LOAD_PATH.replace(ENV["RUBYLIB"].split(File::PATH_SEPARATOR))')
+ end
+rescue Errno::EEXIST
+end
-# ruby = "gdb --args #{ruby}"
-cmd = [ruby, *ARGV].join(' ')
-p cmd
-exec cmd
+cmd = [ruby]
+cmd << "-rpuretest.rb" if pure
+cmd.concat(ARGV)
+cmd.unshift(*debugger) if debugger
+exec(*cmd)