summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/-test-/bug-3662/extconf.rb1
-rw-r--r--ext/-test-/notimplement/bug.c (renamed from ext/-test-/bug-3662/bug.c)2
-rw-r--r--ext/-test-/notimplement/extconf.rb1
-rw-r--r--test/-ext-/test_notimplement.rb (renamed from test/-ext-/test_bug-3662.rb)4
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/-test-/bug-3662/extconf.rb b/ext/-test-/bug-3662/extconf.rb
deleted file mode 100644
index 7a1b73023c..0000000000
--- a/ext/-test-/bug-3662/extconf.rb
+++ /dev/null
@@ -1 +0,0 @@
-create_makefile("-test-/bug-3662/bug")
diff --git a/ext/-test-/bug-3662/bug.c b/ext/-test-/notimplement/bug.c
index 9375dace10..34731bc2e6 100644
--- a/ext/-test-/bug-3662/bug.c
+++ b/ext/-test-/notimplement/bug.c
@@ -8,7 +8,7 @@ bug_funcall(int argc, VALUE *argv, VALUE self)
}
void
-Init_bug(void)
+Init_notimplement(void)
{
VALUE mBug = rb_define_module("Bug");
rb_define_module_function(mBug, "funcall", bug_funcall, -1);
diff --git a/ext/-test-/notimplement/extconf.rb b/ext/-test-/notimplement/extconf.rb
new file mode 100644
index 0000000000..a2feb77a94
--- /dev/null
+++ b/ext/-test-/notimplement/extconf.rb
@@ -0,0 +1 @@
+create_makefile("-test-/notimplement")
diff --git a/test/-ext-/test_bug-3662.rb b/test/-ext-/test_notimplement.rb
index 73c0697241..22bb7f7b88 100644
--- a/test/-ext-/test_bug-3662.rb
+++ b/test/-ext-/test_notimplement.rb
@@ -1,6 +1,6 @@
-require '-test-/bug-3662/bug'
+require '-test-/notimplement'
-class Test_BUG_3662 < Test::Unit::TestCase
+class TestNotImplement < Test::Unit::TestCase
def test_funcall_notimplement
bug3662 = '[ruby-dev:41953]'
assert_raise(NotImplementedError, bug3662) {