* bootstraptest/runner.rb: add lib/ to load path.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
96110732f1
commit
9c9b619799
@ -1,3 +1,7 @@
|
|||||||
|
Sun Feb 25 10:27:17 2007 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
|
* bootstraptest/runner.rb: add lib/ to load path.
|
||||||
|
|
||||||
Sat Feb 25 10:16:50 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Feb 25 10:16:50 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* rubyio.h (HAVE_RB_IO_T): macro to tell if rb_io_t is defined.
|
* rubyio.h (HAVE_RB_IO_T): macro to tell if rb_io_t is defined.
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
# $Id: $
|
# $Id$
|
||||||
|
|
||||||
# NOTE:
|
# NOTE:
|
||||||
# Never use optparse in this file.
|
# Never use optparse in this file.
|
||||||
# Never use test/unit in this file.
|
# Never use test/unit in this file.
|
||||||
# Never use Ruby extensions in this file.
|
# Never use Ruby extensions in this file.
|
||||||
|
|
||||||
|
$LOAD_PATH.unshift "#{File.dirname($0)}/lib"
|
||||||
require 'fileutils'
|
require 'fileutils'
|
||||||
|
|
||||||
def main
|
def main
|
||||||
@ -116,9 +117,7 @@ end
|
|||||||
|
|
||||||
def cleanup_coredump
|
def cleanup_coredump
|
||||||
FileUtils.rm_f 'core'
|
FileUtils.rm_f 'core'
|
||||||
Dir.glob('core.*').each do |ent|
|
FileUtils.rm_f Dir.glob('core.*')
|
||||||
FileUtils.rm_f ent
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
class CoreDumpError < StandardError; end
|
class CoreDumpError < StandardError; end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user