summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
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
2014-07-12Use `mrb_parse_nstring` instead in eval.take_cheeze
2014-07-12Merge pull request #2458 from take-cheeze/min_dep_testYukihiro "Matz" Matsumoto
Support minimum dependency test.
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-12Merge pull request #2460 from cremno/mrb_dump_irep_binary-report-fwrite-failureYukihiro "Matz" Matsumoto
check the return value of `fwrite`
2014-07-11check the return value of `fwrite`cremno
2014-07-11remove spaces after open parensYukihiro "Matz" Matsumoto
2014-07-10Merge pull request #2457 from cremno/mruby-strip-rewriteYukihiro "Matz" Matsumoto
mruby-bin-strip rewrite
2014-07-09initialize `args` in `parse_args`cremno
2014-07-09coding style adjustmentscremno
2014-07-09update expected error message in bintestcremno
2014-07-09rewrite 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-09check `mrb_open` return valuecremno
2014-07-09Merge pull request #2456 from take-cheeze/refactor_evalYukihiro "Matz" Matsumoto
Refactor eval.
2014-07-09Merge pull request #2455 from cremno/readint_mrb_int-check-baseYukihiro "Matz" Matsumoto
invalid base shouldn't silently fail
2014-07-09Merge pull request #2454 from cremno/remove-mrb_str_bodyYukihiro "Matz" Matsumoto
remove unused `mrb_str_body`
2014-07-09Add `SyntaxError` test and don't print compilation error to stderr in eval.take_cheeze
2014-07-09Use `mrb_parse_nstring` instead in eval.take_cheeze
2014-07-09invalid base shouldn't silently failcremno
Revert 44a5809224e819bf8bcca4ae9a8c5ea5bf4cefd7 and check range of `base` with `mrb_assert`. It actually can only be either 2, 8, 10 or 16 (and never 0), unless mruby sources are modified. But I don't see a reason to impose further limits.
2014-07-09remove unused `mrb_str_body`cremno
2014-07-09remove unused return_valueYukihiro "Matz" Matsumoto
2014-07-09Merge pull request #2452 from take-cheeze/test_excYukihiro "Matz" Matsumoto
Use `mrb_print_error` in test error handling.
2014-07-09Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-07-09Merge branch 'AE9RB-cleanup_mrb_value'Yukihiro "Matz" Matsumoto
2014-07-09rename boxing_nix.h to boxing_no.hYukihiro "Matz" Matsumoto
2014-07-09rename word boxing functionsYukihiro "Matz" Matsumoto
2014-07-09rename SET_FIXNUM_VALUE to SET_INT_VALUE since it sets mrb_int valueYukihiro "Matz" Matsumoto
2014-07-09Clean up value.h and mrb_value boxingDavid Turnbull
2014-07-08Merge pull request #2451 from take-cheeze/remove_mem_out_checkYukihiro "Matz" Matsumoto
Remove unnecessary out of memory check in `ary_expand_capa`.
2014-07-08Merge pull request #2449 from take-cheeze/mrb_ary_resizeYukihiro "Matz" Matsumoto
Add new API `mrb_ary_resize`(mruby implementation of `rb_ary_resize`).
2014-07-08Use `mrb_print_error` to print exception instead of `mrb_p`.take_cheeze
2014-07-08Print error instead of printing return value of report.take_cheeze
2014-07-07Remove unnecessary out of memory check in `ary_expand_capa`.take_cheeze
Since `mrb_realloc` raises when failed to allocate memory.
2014-07-06Add new API `mrb_ary_resize`(mruby implementation of `rb_ary_resize`).take_cheeze
2014-07-06reformat else part; ref #2447Yukihiro "Matz" Matsumoto
2014-07-06Merge pull request #2447 from take-cheeze/reduce_ary_clear_allocYukihiro "Matz" Matsumoto
Reduce allocation in shared RArray clearing.