Closedown
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user