# HG changeset patch # User sla # Date 1453474686 -10800 # Node ID 4836938f0ef97cf2b6b26bb8f0e0af19f503f4b3 # Parent 70293223d5533fa446f3ffb68edb8c187262a737 8036132: Tab characters in test/com/sun/jdi files Reviewed-by: alanb, mikael diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/CatchPatternTest.sh --- a/test/com/sun/jdi/CatchPatternTest.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/CatchPatternTest.sh Fri Jan 22 17:58:06 2016 +0300 @@ -35,44 +35,44 @@ cat < $classname.java.1 public class $classname { public void bark(int i) { - System.out.println(" bark: " + i); - switch (i) { - case 0: - throw new IllegalArgumentException("IllegalArgumentException"); - case 1: - throw new ArithmeticException("ArithmeticException"); - case 2: - throw new IllegalMonitorStateException("IllegalMonitorStateException"); - case 3: - throw new IndexOutOfBoundsException("IndexOutOfBoundsException"); - default: - throw new Error("should not happen"); - } + System.out.println(" bark: " + i); + switch (i) { + case 0: + throw new IllegalArgumentException("IllegalArgumentException"); + case 1: + throw new ArithmeticException("ArithmeticException"); + case 2: + throw new IllegalMonitorStateException("IllegalMonitorStateException"); + case 3: + throw new IndexOutOfBoundsException("IndexOutOfBoundsException"); + default: + throw new Error("should not happen"); + } } public void loop(int max) { - for (int i = 0; i <= max; i++) { - try { - bark(i); - } catch(RuntimeException re) { - System.out.println(" loop: " + re.getMessage() + - " caught and ignored."); - } - } + for (int i = 0; i <= max; i++) { + try { + bark(i); + } catch(RuntimeException re) { + System.out.println(" loop: " + re.getMessage() + + " caught and ignored."); + } + } } public void partOne() { loop(2); - System.out.println("partOne completed"); + System.out.println("partOne completed"); } public void partTwo() { loop(3); - System.out.println("partTwo completed"); + System.out.println("partTwo completed"); } public static void main(String[] args) { - System.out.println("Howdy!"); + System.out.println("Howdy!"); $classname my = new $classname(); - my.partOne(); - my.partTwo(); - System.out.println("Goodbye from $classname!"); + my.partOne(); + my.partTwo(); + System.out.println("Goodbye from $classname!"); } } EOF diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/GetLocalVariables4Test.sh --- a/test/com/sun/jdi/GetLocalVariables4Test.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/GetLocalVariables4Test.sh Fri Jan 22 17:58:06 2016 +0300 @@ -39,12 +39,12 @@ public class GetLocalVariables4Targ { public static void main(String[] args) { System.out.println("Howdy!"); - int i = 0; - try { - i = 16 / i; - } catch(Exception e) { - System.out.println("e should be visible"); // @1 breakpoint - } + int i = 0; + try { + i = 16 / i; + } catch(Exception e) { + System.out.println("e should be visible"); // @1 breakpoint + } System.out.println("Goodbye from GetLocalVariables4Targ!"); } } diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/JdbReadTwiceTest.sh --- a/test/com/sun/jdi/JdbReadTwiceTest.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/JdbReadTwiceTest.sh Fri Jan 22 17:58:06 2016 +0300 @@ -219,7 +219,7 @@ echo "Unable to make file unreadable, so test will fail. chmod: $HOME/jdb.ini" if grep -q "uid=0" $HOME/jdb.ini ; then echo "The test is running as root. Fix infrastructure!" - fi + fi fi doit failIfNot 1 "open: $HOME/jdb.ini" diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/NullLocalVariable.sh --- a/test/com/sun/jdi/NullLocalVariable.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/NullLocalVariable.sh Fri Jan 22 17:58:06 2016 +0300 @@ -40,10 +40,10 @@ public static final void main(String args[]) { try { System.out.println("hi!"); // @1 breakpoint - } catch (Exception e) { + } catch (Exception e) { e.printStackTrace(); } finally { - System.out.println("done"); + System.out.println("done"); } } } @@ -54,11 +54,11 @@ dojdbCmds() { #set -x - cmd stop at badscope:4 ; $sleepcmd - runToBkpt ; $sleepcmd - cmd next ; $sleepcmd - cmd next ; $sleepcmd - cmd locals ; $sleepcmd + cmd stop at badscope:4 ; $sleepcmd + runToBkpt ; $sleepcmd + cmd next ; $sleepcmd + cmd next ; $sleepcmd + cmd locals ; $sleepcmd cmd cont } @@ -71,7 +71,7 @@ for ii in . $TESTSRC $TESTSRC/.. ; do if [ -r "$ii/ShellScaffold.sh" ] ; then - . $ii/ShellScaffold.sh + . $ii/ShellScaffold.sh break fi done diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/PrivateTransportTest.sh --- a/test/com/sun/jdi/PrivateTransportTest.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/PrivateTransportTest.sh Fri Jan 22 17:58:06 2016 +0300 @@ -67,9 +67,9 @@ # is given on the command line, tell the user that and use a default. # THIS IS THE JDK BEING TESTED. if [ -n "$1" ] ; then - TESTJAVA=$1 + TESTJAVA=$1 else - TESTJAVA=$JAVA_HOME + TESTJAVA=$JAVA_HOME fi TESTSRC=. TESTCLASSES=. diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/RedefineFinal.sh --- a/test/com/sun/jdi/RedefineFinal.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/RedefineFinal.sh Fri Jan 22 17:58:06 2016 +0300 @@ -42,15 +42,15 @@ public final class $1 { public int m1(int i) { - // @1 uncomment System.out.println("I'm here"); - return m2(i, 1000); + // @1 uncomment System.out.println("I'm here"); + return m2(i, 1000); } public int m2(int i, int j) { - if (i < 0 || j < 0) { // @1 breakpoint + if (i < 0 || j < 0) { // @1 breakpoint throw new IllegalArgumentException(); - } - return i+j; + } + return i+j; } $1() { @@ -59,7 +59,7 @@ } public static void main(String args[]) { - new $1(); + new $1(); } } EOF diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/RedefineIntConstantToLong.sh --- a/test/com/sun/jdi/RedefineIntConstantToLong.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/RedefineIntConstantToLong.sh Fri Jan 22 17:58:06 2016 +0300 @@ -44,18 +44,18 @@ public long m1(int i) { long r=0; r = m2(i * 2); // @1 commentout - // @1 uncomment r =m2(i * 2L); + // @1 uncomment r =m2(i * 2L); return r; } public long m2(int j) { - System.out.println(System.getProperty("line.separator") + + System.out.println(System.getProperty("line.separator") + "**** public long m2(int j) with value: " + j); return j; } public long m2(long j) { - System.out.println(System.getProperty("line.separator") + + System.out.println(System.getProperty("line.separator") + "**** public long m2(long j) with value: " + j); return j; } @@ -66,7 +66,7 @@ r1 = m1(1000); r2 = 0; // @1 breakpoint r2 = m1(1000); - if (r1 != r2) { // @1 breakpoint + if (r1 != r2) { // @1 breakpoint throw new Exception("FAILURE: Expected value: " + r1 + " Actual value: " + r2); } else { System.out.println("SUCCESS: Expected value: " + r1 + " Actual value: " + r2); @@ -74,7 +74,7 @@ } public static void main(String args[]) throws Exception { - new $1().doit(); + new $1().doit(); } } EOF diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/StringConvertTest.sh --- a/test/com/sun/jdi/StringConvertTest.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/StringConvertTest.sh Fri Jan 22 17:58:06 2016 +0300 @@ -23,7 +23,7 @@ # questions. # -# @test @(#)StringConvertTest.sh 1.6 03/04/09 +# @test # @bug 4511950 4843082 # @summary 1. jdb's expression evaluation doesn't perform string conversion properly # 2. TTY: run on expression evaluation diff -r 70293223d553 -r 4836938f0ef9 test/com/sun/jdi/SuspendNoFlagTest.sh --- a/test/com/sun/jdi/SuspendNoFlagTest.sh Fri Jan 22 16:12:17 2016 +0300 +++ b/test/com/sun/jdi/SuspendNoFlagTest.sh Fri Jan 22 17:58:06 2016 +0300 @@ -68,9 +68,9 @@ # is given on the command line, tell the user that and use a default. # THIS IS THE JDK BEING TESTED. if [ -n "$1" ] ; then - TESTJAVA=$1 + TESTJAVA=$1 else - TESTJAVA=$JAVA_HOME + TESTJAVA=$JAVA_HOME fi TESTSRC=. TESTCLASSES=.