aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_thread.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_thread.rb')
-rw-r--r--test/ruby/test_thread.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index 7ea56c57d8..946d522cd9 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -439,9 +439,14 @@ class TestThread < Test::Unit::TestCase
assert(c.stop?)
d.kill
- assert_equal(["aborting", false], [d.status, d.stop?])
-
- assert_equal(["run", false], [e.status, e.stop?])
+ # to avoid thread switching...
+ ds1 = d.status
+ ds2 = d.stop?
+ es1 = e.status
+ es2 = e.stop?
+ assert_equal(["aborting", false], [ds1, ds2])
+
+ assert_equal(["run", false], [es1, es2])
ensure
a.kill if a