summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-25 10:43:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-25 10:43:13 +0000
commitcd7114e46a36840b5b5e1c32d7cddab761638b7c (patch)
tree5313685ef25d9bf6dc2cdbf8b95883c3a6d57aa3
parent78a82b7303b677affbe4b9b1a3860a7d372fffec (diff)
downloadruby-cd7114e46a36840b5b5e1c32d7cddab761638b7c.tar.gz
ruby-cd7114e46a36840b5b5e1c32d7cddab761638b7c.tar.xz
ruby-cd7114e46a36840b5b5e1c32d7cddab761638b7c.zip
* sample/test.rb (system): test with scripts under the source
directory. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--sample/test.rb7
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 679238497..2a4142e08 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Feb 25 19:35:48 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
+
+ * sample/test.rb (system): test with scripts under the source
+ directory.
+
Mon Feb 25 15:14:01 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (method_inspect): should not dump core for unbound
diff --git a/sample/test.rb b/sample/test.rb
index 70cd79e9b..30319c385 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -1191,7 +1191,12 @@ File.unlink "script_tmp" or `/bin/rm -f "script_tmp"`
File.unlink "script_tmp.bak" or `/bin/rm -f "script_tmp.bak"`
$bad = false
-for script in Dir["{lib,sample,ext}/**/*.rb"]
+if (dir = File.dirname(File.dirname(dir))) == '.'
+ dir = ""
+else
+ dir << "/"
+end
+for script in Dir["#{dir}{lib,sample,ext}/**/*.rb"]
`./miniruby -c #{script}`
unless $?
$bad = true