mirror of https://gitee.com/bigwinds/arangodb
25 lines
433 B
C
25 lines
433 B
C
#include <stdlib.h>
|
|
#include "mruby.h"
|
|
#include "mruby/irep.h"
|
|
#include "mruby/dump.h"
|
|
#include "mruby/string.h"
|
|
#include "mruby/proc.h"
|
|
|
|
extern const uint8_t mrbtest_irep[];
|
|
|
|
void mrbgemtest_init(mrb_state* mrb);
|
|
|
|
void
|
|
mrb_init_mrbtest(mrb_state *mrb)
|
|
{
|
|
mrb_load_irep(mrb, mrbtest_irep);
|
|
#ifndef DISABLE_GEMS
|
|
mrbgemtest_init(mrb);
|
|
#endif
|
|
if (mrb->exc) {
|
|
mrb_p(mrb, mrb_obj_value(mrb->exc));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|