Closedown

This commit is contained in:
boccioli_m
2015-06-16 16:24:53 +02:00
parent c650bd6106
commit 25909c6625

View File

@@ -74,6 +74,9 @@ public class TestingList extends Panel {
{
testingList.executeTest(iCurrentTestPos+1);
}
else{
testingList.setButtonToStop();
}
}
else{ // ret empty means that either the test script does not have variable ret, or that the script could not be started at all
ret = "Could not start test script";
@@ -86,7 +89,10 @@ public class TestingList extends Panel {
if(iCurrentTestPos>=0 && testingList.isTestRunAllowed())
{
testingList.executeTest(iCurrentTestPos+1);
}
}
else{
testingList.setButtonToStop();
}
}
}
} catch (Exception ex) {
@@ -101,7 +107,10 @@ public class TestingList extends Panel {
if(iCurrentTestPos>=0 && testingList.isTestRunAllowed() )
{
testingList.executeTest(iCurrentTestPos+1);
}
}
else{
testingList.setButtonToStop();
}
}
}
}