} else if (this.type == TESTER3) {
Tester3 Tstr3 = new Tester3("Tester3" + this.getName());
Tstr3.startTesting(); // this method only returns when the thread
// is done
} else if (this.type == BACKUP) {
BackupRestoreReEncryptTester Tstr4 = null;
try {
Tstr4 = new BackupRestoreReEncryptTester(
"BackupRestoreReEncrypt" + this.getName());
} catch (IOException ioe) {
logger
.println(ioe
+ "=====> Unable to create backup log file, test cannot proceed ");
ioe.printStackTrace( logger );
return;
}
Tstr4.startTesting();
} else {
logger
.println("FAIL: Invalid thread type, should be INIT or TESTERx or BACKUP");
logger.println("You should check the code and restart");