ARTEMIS-1058 Fixing testsuite

Possible NPE that will happen on ReplicatedFailoverTest only
This commit is contained in:
Clebert Suconic 2019-02-12 09:42:28 +01:00
parent 8edca409f6
commit b80a78d885
1 changed files with 12 additions and 6 deletions

View File

@ -141,6 +141,11 @@ public class SpawnedVMSupport {
StringBuilder stringBuilder = new StringBuilder(); StringBuilder stringBuilder = new StringBuilder();
boolean empty = true; boolean empty = true;
File[] files = libfolder.listFiles();
if (files == null) {
return getClassPath();
} else {
for (File f : libfolder.listFiles()) { for (File f : libfolder.listFiles()) {
if (f.getName().endsWith(".jar") || f.getName().endsWith(".zip")) { if (f.getName().endsWith(".jar") || f.getName().endsWith(".zip")) {
if (!empty) { if (!empty) {
@ -150,6 +155,7 @@ public class SpawnedVMSupport {
stringBuilder.append(f.toString()); stringBuilder.append(f.toString());
} }
} }
}
return stringBuilder.toString(); return stringBuilder.toString();
} }