geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/ProcessControl.java [44:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final Process process = processBuilder.start();
    final int exitStatus = process.waitFor();
    if (exitStatus != 0) {
      final String msg =
          format("'%s' command exited with status %d", join(" ", processBuilder.command()),
              exitStatus, System.getProperty("user.dir"));
      logger.error(msg);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/ProcessControl.java [59:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      final Process process = processBuilder.start();
      final int exitStatus = process.waitFor();
      if (exitStatus != 0) {
        final String msg =
            format("'%s' command exited with status %d", join(" ", processBuilder.command()),
                exitStatus, System.getProperty("user.dir"));
        logger.error(msg);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



