Closedown
This commit is contained in:
@@ -137,6 +137,8 @@
|
||||
<Component class="javax.swing.JCheckBox" name="jCheckBox1">
|
||||
<Properties>
|
||||
<Property name="toolTipText" type="java.lang.String" value="Select/Deselec thet highlighted tests"/>
|
||||
<Property name="horizontalAlignment" type="int" value="0"/>
|
||||
<Property name="horizontalTextPosition" type="int" value="0"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jCheckBox1ActionPerformed"/>
|
||||
|
||||
@@ -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