summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-test/init_mrbtest.c
diff options
context:
space:
mode:
authorZachary Scott <[email protected]>2015-11-24 16:32:17 +0900
committerZachary Scott <[email protected]>2015-11-24 16:32:17 +0900
commite7a301828f49cace827ef7bb87277ef6468e79bc (patch)
tree9e9103b29d0dc56b8fb839e78305ba2079aec7a2 /mrbgems/mruby-test/init_mrbtest.c
parent625a3fee7729a12b0ff613e80b7b45ba0e2f086b (diff)
downloadmruby-e7a301828f49cace827ef7bb87277ef6468e79bc.tar.gz
mruby-e7a301828f49cace827ef7bb87277ef6468e79bc.zip
Remove mrbtest_irep from mrbtest
If we make the core tests a dependency on the mruby-test gem, we don't need to worry about maintaining the core test irep alone.
Diffstat (limited to 'mrbgems/mruby-test/init_mrbtest.c')
-rw-r--r--mrbgems/mruby-test/init_mrbtest.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/mrbgems/mruby-test/init_mrbtest.c b/mrbgems/mruby-test/init_mrbtest.c
index 1e2ba92bd..da03d946d 100644
--- a/mrbgems/mruby-test/init_mrbtest.c
+++ b/mrbgems/mruby-test/init_mrbtest.c
@@ -4,7 +4,6 @@
#include "mruby/variable.h"
extern const uint8_t mrbtest_assert_irep[];
-extern const uint8_t mrbtest_irep[];
void mrbgemtest_init(mrb_state* mrb);
void mrb_init_test_driver(mrb_state* mrb, mrb_bool verbose);
@@ -24,7 +23,6 @@ mrb_init_mrbtest(mrb_state *mrb)
}
mrb_init_test_driver(core_test, mrb_test(mrb_gv_get(mrb, mrb_intern_lit(mrb, "$mrbtest_verbose"))));
mrb_load_irep(core_test, mrbtest_assert_irep);
- mrb_load_irep(core_test, mrbtest_irep);
mrb_t_pass_result(mrb, core_test);
#ifndef DISABLE_GEMS