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);