diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | eval.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sat Jun 16 18:31:46 2012 Nobuyoshi Nakada <[email protected]> + + * eval.c (ruby_setup): set running state in the normal case before + popping a tag. + Sat Jun 16 07:46:03 2012 Nobuyoshi Nakada <[email protected]> * lib/test/unit.rb (Test::Unit::Runner#_run_parallel): format workers @@ -53,10 +53,10 @@ ruby_setup(void) if ((state = EXEC_TAG()) == 0) { rb_call_inits(); ruby_prog_init(); + GET_VM()->running = 1; } POP_TAG(); - if (!state) GET_VM()->running = 1; return state; } |