diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-23 05:40:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-23 05:40:11 +0000 |
commit | c2fdd98eb054fb5825061782ae610551ee00840c (patch) | |
tree | 1ecf0c0a1101aec2cce04459057539a1b31564df /test/mkmf | |
parent | 874ab2e63985f8bd920ad8aa55f5320d6361813a (diff) | |
download | ruby-c2fdd98eb054fb5825061782ae610551ee00840c.tar.gz |
* 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.rb | 2 |
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 |