Closedown

This commit is contained in:
boccioli_m
2015-06-17 09:15:02 +02:00
parent bd43fe2091
commit 8fedb6341a
2 changed files with 6 additions and 2 deletions

View File

@@ -338,6 +338,8 @@ public class TestingList extends Panel {
jPanel2.setLayout(new java.awt.BorderLayout());
jCheckBox1.setToolTipText("Select/Deselec thet highlighted tests");
jCheckBox1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jCheckBox1.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jCheckBox1ActionPerformed(evt);
@@ -622,8 +624,8 @@ public class TestingList extends Panel {
sTestPath = jTable1.getValueAt(row, COL.TESTPATH.ordinal()).toString();;
File f = new File(sTestPath);
if(!f.exists() || f.isDirectory()){
logger.log(Level.SEVERE, "Test script not found: " + sTestPath);
showResult(sDeviceName, sTestPath, "Test script not found: " + sTestPath, TestStatus.FAILURE.toString());
logger.log(Level.SEVERE, "Cannot find test script: " + sTestPath);
showResult(sDeviceName, sTestPath, "Cannot find test script: " + sTestPath, TestStatus.FAILURE.toString());
executeTest(position+1);
return;
}