diff options
author | Koichi Sasada <[email protected]> | 2020-04-09 04:45:49 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2020-04-09 12:51:51 +0900 |
commit | fd0222caedf1be56faa004656bbf145522abbe68 (patch) | |
tree | e20c3cdb107770bd1e65f79b33a4b67c9d415167 /bootstraptest/test_thread.rb | |
parent | d2bb2e066b5a914283dd3ea473fc1762183af013 (diff) |
should check pending interrupts correctly.
rb_uninterruptible() disables any interrupts using handle_interrupt
feature (This function is used by `p`).
After this function, pending interrupts should be checked correctly,
however there is no chance to setup interrupt flag of working
threads, it means that nobody checks pending interrupts.
For example, it ignores terminate signal delivered at the end
of main thread and program can't stop.
This patch set interrupt flag if there are pending interrupts.
Diffstat (limited to 'bootstraptest/test_thread.rb')
-rw-r--r-- | bootstraptest/test_thread.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index e7ddadf4a7..38a55ff229 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -484,3 +484,17 @@ assert_equal 'foo', %q{ GC.start f.call.source } +assert_normal_exit %q{ + class C + def inspect + sleep 0.5 + 'C!!' + end + end + Thread.new{ + loop{ + p C.new + } + } + sleep 0.1 +}, timeout: 5 |