aboutsummaryrefslogtreecommitdiffstats
path: root/test/mkmf
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-11 12:12:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-11 12:12:15 +0000
commit79ea4d627ffc38c9754123c7535dc264dfc8e74e (patch)
treed50e06ed6362db6d9e3a003f39ac4416fd7b4b3f /test/mkmf
parent2f20defa7abaa77f92e0a7c1a6dad789c9963391 (diff)
downloadruby-79ea4d627ffc38c9754123c7535dc264dfc8e74e.tar.gz
* test/mkmf/test_config.rb (TestMkmf): fix superclass mismatch.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/mkmf')
-rw-r--r--test/mkmf/base.rb2
-rw-r--r--test/mkmf/test_config.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/mkmf/base.rb b/test/mkmf/base.rb
index e1ae634537..f4f00ed534 100644
--- a/test/mkmf/base.rb
+++ b/test/mkmf/base.rb
@@ -8,7 +8,7 @@ RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout
$INCFLAGS << " -I."
$extout_prefix = "$(extout)$(target_prefix)/"
-class TestMkmfBase < Test::Unit::TestCase
+class TestMkmf < Test::Unit::TestCase
MKMFLOG = proc {File.read("mkmf.log") rescue ""}
class Capture
diff --git a/test/mkmf/test_config.rb b/test/mkmf/test_config.rb
index c0b2355ee1..645d84be0a 100644
--- a/test/mkmf/test_config.rb
+++ b/test/mkmf/test_config.rb
@@ -2,7 +2,7 @@ require 'test/unit'
require 'mkmf'
require_relative '../ruby/envutil'
-class TestMkmf
+class TestMkmf < Test::Unit::TestCase
class TestConfig < Test::Unit::TestCase
def test_dir_config
bug8074 = '[Bug #8074]'