2004-11-20 08:58:20 -05:00
|
|
|
require 'rbconfig'
|
2008-10-15 00:16:28 -04:00
|
|
|
|
2008-10-16 09:55:09 -04:00
|
|
|
require 'test/unit'
|
2008-10-19 11:59:35 -04:00
|
|
|
|
2012-06-08 03:19:38 -04:00
|
|
|
src_testdir = File.dirname(File.realpath(__FILE__))
|
2011-03-09 17:32:29 -05:00
|
|
|
$LOAD_PATH << src_testdir
|
2011-07-08 19:39:42 -04:00
|
|
|
module Gem
|
|
|
|
end
|
2011-03-21 21:59:18 -04:00
|
|
|
class Gem::TestCase < MiniTest::Unit::TestCase
|
|
|
|
@@project_dir = File.dirname($LOAD_PATH.last)
|
|
|
|
end
|
2008-10-19 11:59:35 -04:00
|
|
|
|
2012-11-30 19:34:01 -05:00
|
|
|
ENV["GEM_SKIP"] = ENV["GEM_HOME"] = ENV["GEM_PATH"] = "".freeze
|
2012-07-11 23:32:28 -04:00
|
|
|
|
2010-10-29 10:35:53 -04:00
|
|
|
require_relative 'profile_test_all' if ENV['RUBY_TEST_ALL_PROFILE'] == 'true'
|
|
|
|
|
2013-06-19 03:47:07 -04:00
|
|
|
module Test::Unit
|
|
|
|
module ZombieHunter
|
|
|
|
def after_teardown
|
|
|
|
super
|
|
|
|
assert_empty(Process.waitall)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class TestCase
|
|
|
|
include ZombieHunter
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-30 02:52:48 -04:00
|
|
|
begin
|
|
|
|
exit Test::Unit::AutoRunner.run(true, src_testdir)
|
2013-07-30 08:30:30 -04:00
|
|
|
rescue NoMemoryError
|
2013-07-31 03:07:03 -04:00
|
|
|
system("cat /proc/meminfo") if File.exist?("/proc/meminfo")
|
2013-08-01 11:04:13 -04:00
|
|
|
system("ps x -opid,cmd,%mem,rss,size,vsz") if File.exist?("/bin/ps")
|
2013-07-30 02:52:48 -04:00
|
|
|
raise
|
|
|
|
end
|