From 71e8b8136ab82248a4f305a1e30941474806e370 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 10 Jun 2015 10:19:49 +0200 Subject: [PATCH] Startup --- plugins/TestingList.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index dac8f90..d951adc 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -289,7 +289,11 @@ public class TestingList extends Panel { }// //GEN-END:initComponents private void jButtonRunActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonRunActionPerformed - this.executeTest(0); + try { + this.executeTest(0); + } catch (InterruptedException ex) { + Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + } }//GEN-LAST:event_jButtonRunActionPerformed private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCheckBox1ActionPerformed @@ -366,7 +370,7 @@ public class TestingList extends Panel { // End of variables declaration//GEN-END:variables //execute the selected tests in the list, starting from the position - public void executeTest(int position){ + public void executeTest(int position) throws InterruptedException{ boolean bSelected = false; String sDeviceName; String sTestName;