summaryrefslogtreecommitdiff
path: root/spec/rubyspec/optional/capi/ext/util_spec.c
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
commit1d15d5f08032acf1b7bceacbb450d617ff6e0931 (patch)
treea3785a79899302bc149e4a6e72f624ac27dc1f10 /spec/rubyspec/optional/capi/ext/util_spec.c
parent75bfc6440d595bf339007f4fb280fd4d743e89c1 (diff)
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/rubyspec/optional/capi/ext/util_spec.c')
-rw-r--r--spec/rubyspec/optional/capi/ext/util_spec.c95
1 files changed, 0 insertions, 95 deletions
diff --git a/spec/rubyspec/optional/capi/ext/util_spec.c b/spec/rubyspec/optional/capi/ext/util_spec.c
deleted file mode 100644
index 50795b51af..0000000000
--- a/spec/rubyspec/optional/capi/ext/util_spec.c
+++ /dev/null
@@ -1,95 +0,0 @@
-#include "ruby.h"
-#include "rubyspec.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifdef HAVE_RB_SCAN_ARGS
-VALUE util_spec_rb_scan_args(VALUE self, VALUE argv, VALUE fmt, VALUE expected, VALUE acc) {
- int i, result, argc = (int)RARRAY_LEN(argv);
- VALUE args[6], failed, a1, a2, a3, a4, a5, a6;
-
- failed = rb_intern("failed");
- a1 = a2 = a3 = a4 = a5 = a6 = failed;
-
- for(i = 0; i < argc; i++) {
- args[i] = rb_ary_entry(argv, i);
- }
-
- result = rb_scan_args(argc, args, RSTRING_PTR(fmt), &a1, &a2, &a3, &a4, &a5, &a6);
-
- switch(NUM2INT(expected)) {
- case 6:
- rb_ary_unshift(acc, a6);
- case 5:
- rb_ary_unshift(acc, a5);
- case 4:
- rb_ary_unshift(acc, a4);
- case 3:
- rb_ary_unshift(acc, a3);
- case 2:
- rb_ary_unshift(acc, a2);
- case 1:
- rb_ary_unshift(acc, a1);
- break;
- default:
- rb_raise(rb_eException, "unexpected number of arguments returned by rb_scan_args");
- }
-
- return INT2NUM(result);
-}
-#endif
-
-#ifdef HAVE_RB_LONG2INT
-static VALUE util_spec_rb_long2int(VALUE self, VALUE n) {
- return INT2NUM(rb_long2int(NUM2LONG(n)));
-}
-#endif
-
-#ifdef HAVE_RB_ITER_BREAK
-static VALUE util_spec_rb_iter_break(VALUE self) {
- rb_iter_break();
- return Qnil;
-}
-#endif
-
-#ifdef HAVE_RB_SOURCEFILE
-static VALUE util_spec_rb_sourcefile(VALUE self) {
- return rb_str_new2(rb_sourcefile());
-}
-#endif
-
-#ifdef HAVE_RB_SOURCELINE
-static VALUE util_spec_rb_sourceline(VALUE self) {
- return INT2NUM(rb_sourceline());
-}
-#endif
-
-void Init_util_spec(void) {
- VALUE cls = rb_define_class("CApiUtilSpecs", rb_cObject);
-
-#ifdef HAVE_RB_SCAN_ARGS
- rb_define_method(cls, "rb_scan_args", util_spec_rb_scan_args, 4);
-#endif
-
-#ifdef HAVE_RB_LONG2INT
- rb_define_method(cls, "rb_long2int", util_spec_rb_long2int, 1);
-#endif
-
-#ifdef HAVE_RB_ITER_BREAK
- rb_define_method(cls, "rb_iter_break", util_spec_rb_iter_break, 0);
-#endif
-
-#ifdef HAVE_RB_SOURCEFILE
- rb_define_method(cls, "rb_sourcefile", util_spec_rb_sourcefile, 0);
-#endif
-
-#ifdef HAVE_RB_SOURCELINE
- rb_define_method(cls, "rb_sourceline", util_spec_rb_sourceline, 0);
-#endif
-}
-
-#ifdef __cplusplus
-}
-#endif