summaryrefslogtreecommitdiff
path: root/test/mkmf
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-23 05:40:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-23 05:40:11 +0000
commitc2fdd98eb054fb5825061782ae610551ee00840c (patch)
tree1ecf0c0a1101aec2cce04459057539a1b31564df /test/mkmf
parent874ab2e63985f8bd920ad8aa55f5320d6361813a (diff)
* lib/mkmf.rb: $extmk should be true for test/runner.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/mkmf')
-rw-r--r--test/mkmf/test_sizeof.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mkmf/test_sizeof.rb b/test/mkmf/test_sizeof.rb
index e1c498dc0a..d35811f3f6 100644
--- a/test/mkmf/test_sizeof.rb
+++ b/test/mkmf/test_sizeof.rb
@@ -6,7 +6,7 @@ class TestMkmf
open("confdefs.h", "w") {|f|
f.puts "typedef struct {char x;} test1_t;"
}
- assert_equal(1, mkmf {size = check_sizeof("test1_t", "confdefs.h")})
+ assert_equal(1, mkmf {check_sizeof("test1_t", "confdefs.h")})
end
end
end