Fix thread leakage

Wait for the worker thread to finish.
This commit is contained in:
Nobuyoshi Nakada 2023-11-03 09:32:32 +09:00
parent ac8ec004e5
commit 8b02de8f41
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -182,7 +182,9 @@ class TestProfileFrames < Test::Unit::TestCase
assert_equal(full_labels[i], frame)
end
ensure
th.kill
th.join
end