1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

ext/-test-/symbol: move upward

* ext/-test-/symbol/extconf.rb: move the extension object file upward.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-09-20 04:53:11 +00:00
parent aee98a1c2b
commit 831fe26dec
2 changed files with 2 additions and 2 deletions

View file

@ -3,4 +3,4 @@ inits = $srcs.map {|s| File.basename(s, ".*")}
inits.delete("init")
inits.map! {|s|"X(#{s})"}
$defs << "-DTEST_INIT_FUNCS(X)=\"#{inits.join(' ')}\""
create_makefile("-test-/symbol/symbol")
create_makefile("-test-/symbol")

View file

@ -1,5 +1,5 @@
require 'test/unit'
require "-test-/symbol/symbol"
require "-test-/symbol"
module Test_Symbol
class TestInadvertent < Test::Unit::TestCase