summaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-25 01:28:14 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-25 01:28:14 +0000
commit563e0ea8cc6bf90c6c49e9b429142b29793f831f (patch)
treef368415e3e807ea06ead4b854f2428e0995e1186 /bootstraptest
parent53149d38bd53326c5efab93e9956bea5d686d3ff (diff)
downloadruby-563e0ea8cc6bf90c6c49e9b429142b29793f831f.tar.gz
ruby-563e0ea8cc6bf90c6c49e9b429142b29793f831f.tar.xz
ruby-563e0ea8cc6bf90c6c49e9b429142b29793f831f.zip
* bootstraptest/runner.rb: add lib/ to load path.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/runner.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 6ad37d7af..8fc3bc2e0 100644
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -1,10 +1,11 @@
-# $Id: $
+# $Id$
# NOTE:
# Never use optparse in this file.
# Never use test/unit in this file.
# Never use Ruby extensions in this file.
+$LOAD_PATH.unshift "#{File.dirname($0)}/lib"
require 'fileutils'
def main
@@ -116,9 +117,7 @@ end
def cleanup_coredump
FileUtils.rm_f 'core'
- Dir.glob('core.*').each do |ent|
- FileUtils.rm_f ent
- end
+ FileUtils.rm_f Dir.glob('core.*')
end
class CoreDumpError < StandardError; end