|
@@ -117,8 +117,17 @@ public abstract class AbstractBaseBenchmark {
|
|
|
}
|
|
|
|
|
|
private static int getForks() {
|
|
|
- String value = System.getProperty("forkCount");
|
|
|
- return null != value ? Integer.parseInt(value) : -1;
|
|
|
- }
|
|
|
+ String forkCount = System.getProperty("forkCount");
|
|
|
+ if (forkCount == null) {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
|
|
|
+ try {
|
|
|
+ return Integer.parseInt(forkCount);
|
|
|
+ } catch (NumberFormatException e) {
|
|
|
+ logger.error("fail to convert forkCount into int", e);
|
|
|
+ }
|
|
|
+
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
}
|