summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-07-24Merge pull request #2489 from Ancurio/silence_cpp_warnYukihiro "Matz" Matsumoto
Silence "unused parameter" warnings in C++
2014-07-23Silence "unused parameter" warnings in C++Jonas Kulla
This has been done already, but the fixes were accidentally removed in 249f05e7d70761823ef07a990276f9200e8b3302.
2014-07-24Merge pull request #2488 from ksss/leak-testYukihiro "Matz" Matsumoto
Fix memory leak for test driver
2014-07-23Fix memory leak for test driverksss
2014-07-23check if block is given in eval_under(); fix #2486Yukihiro "Matz" Matsumoto
2014-07-22remove extra ';'.Tomoyuki Sahara
2014-07-22Merge pull request #2482 from take-cheeze/exc_ttYukihiro "Matz" Matsumoto
Use MRB_TT_EXCEPTION in exception object.
2014-07-22Merge pull request #22 from take-cheeze/fix_argTomoyuki Sahara
Fix type of argument passed to mrb_get_args.
2014-07-22restore mrb_get_args() in f_instance_eval to check arguments typeYukihiro "Matz" Matsumoto
2014-07-22exception in instance_eval should not exit mrb_run; fix #2483Yukihiro "Matz" Matsumoto
2014-07-21Use MRB_TT_EXCEPTION in exception object.take_cheeze
2014-07-21since #1441, NaN boxing with 64bit pointer works; close #2476Yukihiro "Matz" Matsumoto
2014-07-21Merge pull request #2481 from take-cheeze/move_word_box_structYukihiro "Matz" Matsumoto
Move word boxing structs to "mruby/boxing_word.h".
2014-07-20Move word boxing structs to "mruby/boxing_word.h".take_cheeze
2014-07-20Merge pull request #2480 from take-cheeze/test_backtraceYukihiro "Matz" Matsumoto
Print backtrace of crashed test in verbose mode.
2014-07-19Print backtrace of crashed test in verbose mode.take_cheeze
2014-07-19Fix type of argument passed to mrb_get_args.take_cheeze
2014-07-18add Module#module_functiondreamedge
2014-07-17Add field `allocf_ud` to replace current `ud`.take_cheeze
Since some use it as `mrb_state` associated user data.
2014-07-17Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-07-17avoid infinite recursion when error was happened in #inspect; fix #2474Yukihiro "Matz" Matsumoto
2014-07-17Merge pull request #2475 from take-cheeze/full_core_listYukihiro "Matz" Matsumoto
Check mrbgem.rake instead of directory to ignore empty directories in full-core gembox.
2014-07-16Check mrbgem.rake instead of directory to ignore empty directories in full-core.take_cheeze
2014-07-16need to call write_barrier on every fiber context switchYukihiro "Matz" Matsumoto
2014-07-16git push origin masterMerge branch 'take-cheeze-instance_eval'Yukihiro "Matz" Matsumoto
2014-07-16remove unused local variables; ref #2473Yukihiro "Matz" Matsumoto
2014-07-15Implement string compiling `instance_eval` method.take_cheeze
2014-07-15fiber stack allocation size should be bigger than irep->nregsYukihiro "Matz" Matsumoto
2014-07-15backtrace supression condition was wrong; fix #2472Yukihiro "Matz" Matsumoto
2014-07-15Merge pull request #2471 from take-cheeze/const_defined_at_retYukihiro "Matz" Matsumoto
Use `mrb_bool` as return type of `mrb_const_defined_at`.
2014-07-15Merge pull request #2464 from take-cheeze/inherit_verbose_flagYukihiro "Matz" Matsumoto
Inherit `$mrbtest_verbose` flag in core tests.
2014-07-14Set `$mrbtest_verbose` flag in `mrb_init_test_driver`.take_cheeze
2014-07-14Use `mrb_bool` as return type of `mrb_const_defined_at`.take_cheeze
2014-07-13Merge pull request #2465 from cubicdaiya/feature/comment_styleYukihiro "Matz" Matsumoto
use C style comments instead of C++ style comments
2014-07-13use C style comments instead of C++ style commentsTatsuhiko Kubo
2014-07-12Merge pull request #2463 from take-cheeze/fix_rakeYukihiro "Matz" Matsumoto
Fix rake failure since `mrbtest_objs` isn't flattened.
2014-07-12Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-07-12rescue SystemStackError that comes from inspecting self-referencing Hashes ↵Yukihiro "Matz" Matsumoto
and Arrays; fix #2461
2014-07-12avoid print backtrace for SystemStackErrorYukihiro "Matz" Matsumoto
2014-07-12Fix rake failure since `mrbtest_objs` isn't flattened.take_cheeze
Append generated test object to `@test_objs` of mrbgem spec. Add method `custom_test_init?` to check whether mrbgem has custom test init function.
2014-07-12use SystemStackError instead of RuntimeErrorYukihiro "Matz" Matsumoto
2014-07-12Run mrbgem and core tests on minimum dependencies.take_cheeze
Solves #2355. In test drivers: * Uses `mrb_t_pass_result` to check and pass test result to main `mrb_state`. * Adds `mrb_init_test_driver` to init test `mrb_state`.
2014-07-12check the return value of `fwrite`cremno
2014-07-12remove spaces after open parensYukihiro "Matz" Matsumoto
2014-07-12initialize `args` in `parse_args`cremno
2014-07-12coding style adjustmentscremno
2014-07-12update expected error message in bintestcremno
2014-07-12rewrite strippingcremno
Previous version ignored some errors, and didn't free memory and close files. Now no memory will be dynamically allocated to simplify error handling. This commit also fixes a wrong check: files[i] = fopen(argv[i], "wb"); if (!ireps[i]) { Improve error messages a bit and add missing newline to one.
2014-07-12check `mrb_open` return valuecremno
2014-07-12Add `SyntaxError` test and don't print compilation error to stderr in eval.take_cheeze