From 4245f03258d4b56a40e20c080c160d302c3c2514 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 10 Jun 2015 10:14:21 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 02cee68..27471a9 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -65,6 +65,7 @@ public class TestingList extends Panel { //start next test if(iCurrentTestPos>0) { + Thread.sleep(500); testingList.executeTest(iCurrentTestPos+1); } } @@ -391,8 +392,8 @@ public class TestingList extends Panel { String sDeviceName; String sTestName; HashMap args = new HashMap(); - //scan through the table and execute the selected tests - int row = position; + //scan through the table starting from 'position' and execute the first selected test found + int row = position; if (row <= jTable1.getRowCount() ) { for(row = position ; row <= jTable1.getRowCount() ; row++){ bSelected = (boolean) jTable1.getValueAt(row, COL_CHECK);