< prev index next >

test/langtools/tools/jdeprscan/tests/jdk/jdeprscan/TestRelease.java

Print this page
rev 50763 : 8205455: jdeprscan issues annotation processor warning regarding RELEASE_10
Reviewed-by: XXX

@@ -42,11 +42,14 @@
 import static org.testng.Assert.assertFalse;
 import static org.testng.Assert.assertTrue;
 
 public class TestRelease {
     static boolean invoke(String arg) {
-        return Main.call(System.out, System.err, "--list", "--release", arg);
+        System.err.println(">>> invoking Main.call with arguments: --list --release " + arg);
+        boolean r = Main.call(System.out, System.err, "--list", "--release", arg);
+        System.err.println(">>> Main.call returned " + r);
+        return r;
     }
 
     @Test
     public void testSuccess() {
         for (String target : new JDKPlatformProvider().getSupportedPlatformNames()) {
< prev index next >