This is an automated email from the ASF dual-hosted git repository. jensdeppe pushed a commit to branch feature/GEODE-5463 in repository https://gitbox.apache.org/repos/asf/geode.git
commit 1fdb37346ab4e31be4b34fd6c17359f8438d295c Author: Jens Deppe <[email protected]> AuthorDate: Tue Jul 24 21:23:35 2018 -0700 Debugging Windows failures --- .../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();
