This is an automated email from the ASF dual-hosted git repository.
jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new a5ca0a0 GEODE-5463: Log executable used by BackupIntegrationTest
a5ca0a0 is described below
commit a5ca0a0e6bcaffd85eb665b0fe9e6137fe86c9a9
Author: Jens Deppe <[email protected]>
AuthorDate: Tue Jul 24 21:23:35 2018 -0700
GEODE-5463: Log executable used by BackupIntegrationTest
---
.../org/apache/geode/internal/cache/backup/BackupIntegrationTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/backup/BackupIntegrationTest.java
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/backup/BackupIntegrationTest.java
index 7e7af15..26f6b68 100644
---
a/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/backup/BackupIntegrationTest.java
+++
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/backup/BackupIntegrationTest.java
@@ -384,13 +384,14 @@ public class BackupIntegrationTest {
throws IOException, InterruptedException {
List<String> command = new ArrayList<>();
+ System.out.println("EXECUTING:" + script.getCanonicalPath());
boolean isWindows = script.getName().endsWith("bat");
if (isWindows) {
command.add("cmd.exe");
command.add("/c");
}
- command.add(script.getAbsolutePath());
+ command.add(script.getCanonicalPath());
ProcessBuilder pb = new ProcessBuilder(command);
pb.redirectErrorStream(true);
Process process = pb.start();