summaryrefslogtreecommitdiffhomepage
path: root/test/driver.c
AgeCommit message (Collapse)Author
2013-05-08Move declaration of kernel to the beginning of the methodDaniel Bovensiepen
2013-05-08Implement fallback print method for testing environment in case mruby-print ↵Daniel Bovensiepen
GEM wasn't included.
2013-03-24Add stdio.h. This is just for now. We should discuss about remote tests later.Masaki Muranaka
2013-03-17resolve conflict from #1017Yukihiro Matz Matsumoto
2013-03-17refine abf1b18 to remove nested ifYukihiro Matz Matsumoto
2013-03-16Remove stdlib.h from mruby.h. It is for portability (care for freestanding ↵Masaki Muranaka
environments). This is a first step. It will be reduced stdlib.h in each files later.
2013-03-16Remove unused string.h.Masaki Muranaka
2013-03-16Remove strncmp(). It enables to process various options.Masaki Muranaka
2013-03-13Cut off eval_test from mainkano4
2013-03-12Add static declarationkano4
2013-02-09add mrbtest verbose mode ('-v' option)Akira Yumiyama
2012-11-04replace FIXNUM_P() by mrb_fixnum_p()Yukihiro Matz Matsumoto
2012-07-29Modify return value of mrbtest.Masamitsu MURASE
This is an improvement for CI, such as Travis.
2012-07-03remove unused variablesYukihiro Matsumoto
2012-07-03test/driver to use EXIT_SUCCESSYukihiro Matsumoto
2012-07-03add context to parser, that would hold local variable info, filename, and ↵Yukihiro Matsumoto
line number. mrbc_context argument has been added to mrb_parse_xxx() functions. Normally, you just to need to add NULL (or 0) to the last argument of the above functions.
2012-06-03Check mrb_open return value for NULLJon
2012-05-22change example code to do mrb_close()Mitchell Blank Jr
I was hoping this would cause valgrind to complain less, but there is still a lot of memory leaked (does mrb_close() actually free all of the managed blocks?) Anyway this helps somewhat and is good practice
2012-05-18refactor test driverYukihiro Matsumoto
2012-05-18rename compiler.h to mruby/compiler.hYukihiro Matsumoto
2012-05-14make test restructuringYukihiro Matsumoto