summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog5
-rwxr-xr-xrunruby.rb25
2 files changed, 24 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 043147c411..418bf2dc84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+`LANG=C date +%c` Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * runruby.rb: added --pure (turned on by default) and --debugger
+ options.
+
Mon Mar 5 09:19:33 2007 Minero Aoki <aamine@loveruby.net>
* lib/timeout.rb (Timeout.timeout): should return the block value
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)