# HG changeset patch
# User rehn
# Date 1553608194 -3600
# Node ID 6ddb9e3f16542ff9d2d3c05c2f9f8a65d8f826b1
# Parent  ca554363aed32afc940cc28ca1b06aa20c73acc2
8221472: Fix HandshakeSuspendExitTest
Reviewed-by: dcubed, redestad

diff -r ca554363aed3 -r 6ddb9e3f1654 test/hotspot/jtreg/runtime/handshake/HandshakeSuspendExitTest.java
--- a/test/hotspot/jtreg/runtime/handshake/HandshakeSuspendExitTest.java	Tue Mar 26 21:33:47 2019 +0800
+++ b/test/hotspot/jtreg/runtime/handshake/HandshakeSuspendExitTest.java	Tue Mar 26 14:49:54 2019 +0100
@@ -42,9 +42,9 @@
         while (!_exit_now) {
             // Leave last 2 threads running.
             for (int i = 0; i < _suspend_threads.length - 2; i++) {
-                if (Thread.currentThread() != thr) {
-                    thr.suspend();
-                    thr.resume();
+                if (Thread.currentThread() != _suspend_threads[i]) {
+                    _suspend_threads[i].suspend();
+                    _suspend_threads[i].resume();
                 }
             }
         }