From ca7835bec6714f0704a32a25d2c23e465f3c10b2 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Oct 2014 12:42:57 +0000 Subject: hash.c: rb_hash_delete does not call the block * hash.c (rb_hash_delete): now does not call the block given to the current method. [ruby-core:65861] [Bug #10413] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/-test-/hash/delete.c | 14 ++++++++++++++ ext/-test-/hash/extconf.rb | 7 +++++++ ext/-test-/hash/init.c | 11 +++++++++++ 3 files changed, 32 insertions(+) create mode 100644 ext/-test-/hash/delete.c create mode 100644 ext/-test-/hash/extconf.rb create mode 100644 ext/-test-/hash/init.c (limited to 'ext/-test-') diff --git a/ext/-test-/hash/delete.c b/ext/-test-/hash/delete.c new file mode 100644 index 0000000000..de54e3694f --- /dev/null +++ b/ext/-test-/hash/delete.c @@ -0,0 +1,14 @@ +#include "ruby.h" + +static VALUE +hash_delete(VALUE hash, VALUE key) +{ + VALUE ret = rb_hash_delete(hash, key); + return ret == Qundef ? Qfalse : Qtrue; +} + +void +Init_delete(VALUE klass) +{ + rb_define_method(klass, "delete", hash_delete, 1); +} diff --git a/ext/-test-/hash/extconf.rb b/ext/-test-/hash/extconf.rb new file mode 100644 index 0000000000..9d4ef4f935 --- /dev/null +++ b/ext/-test-/hash/extconf.rb @@ -0,0 +1,7 @@ +$INCFLAGS << " -I$(topdir) -I$(top_srcdir)" +$srcs = Dir[File.join($srcdir, "*.{#{SRC_EXT.join(%q{,})}}")] +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-/hash") diff --git a/ext/-test-/hash/init.c b/ext/-test-/hash/init.c new file mode 100644 index 0000000000..9f6cbde652 --- /dev/null +++ b/ext/-test-/hash/init.c @@ -0,0 +1,11 @@ +#include "ruby.h" + +#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);} + +void +Init_hash(void) +{ + VALUE mBug = rb_define_module("Bug"); + VALUE klass = rb_define_class_under(mBug, "Hash", rb_cHash); + TEST_INIT_FUNCS(init); +} -- cgit v1.2.3