From 59b94ef698bc8b1800309d86c5cd2d046acae8ec Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sun, 20 Oct 2013 18:21:42 +0200 Subject: Platform independence for SI-6240 test case File.pathSeparator, rather than ":" --- test/files/run/t6240a/StepOne.java | 4 ++-- test/files/run/t6240b/StepOne.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/files/run/t6240a/StepOne.java b/test/files/run/t6240a/StepOne.java index 7abd148d69..342d617c79 100644 --- a/test/files/run/t6240a/StepOne.java +++ b/test/files/run/t6240a/StepOne.java @@ -12,7 +12,7 @@ import java.net.MalformedURLException; public class StepOne { public static void main(String[] args) throws MalformedURLException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, IOException { - String[] launchPaths = System.getProperty("launch.classpath").split(":"); + String[] launchPaths = System.getProperty("launch.classpath").split(File.pathSeparator); // move away StepThree File tempDir = File.createTempFile("temp", Long.toString(System.nanoTime())); @@ -38,4 +38,4 @@ public class StepOne { Method main = stepTwo.getDeclaredMethod("main", String[].class); main.invoke(null, (Object)(new String[]{})); } -} \ No newline at end of file +} diff --git a/test/files/run/t6240b/StepOne.java b/test/files/run/t6240b/StepOne.java index 7abd148d69..342d617c79 100644 --- a/test/files/run/t6240b/StepOne.java +++ b/test/files/run/t6240b/StepOne.java @@ -12,7 +12,7 @@ import java.net.MalformedURLException; public class StepOne { public static void main(String[] args) throws MalformedURLException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, IOException { - String[] launchPaths = System.getProperty("launch.classpath").split(":"); + String[] launchPaths = System.getProperty("launch.classpath").split(File.pathSeparator); // move away StepThree File tempDir = File.createTempFile("temp", Long.toString(System.nanoTime())); @@ -38,4 +38,4 @@ public class StepOne { Method main = stepTwo.getDeclaredMethod("main", String[].class); main.invoke(null, (Object)(new String[]{})); } -} \ No newline at end of file +} -- cgit v1.2.3