Re: RFR (XS): 7023754 JConsole Javascript plugin demo throws exception on window.print

2013-08-16 Thread A. Sundararajan
+1 -Sundar On Saturday 17 August 2013 03:41 AM, Erik Gahlin wrote: Could I please have a review of a fix that allows a script in the jconsole script plug-in to call print method in ScriptShellPanel class. Bug: http://monaco.us.oracle.com/detail.jsf?cr=7023754 Webrev: http://cr.openjdk.java.n

hg: hsx/hotspot-rt/hotspot: 19 new changesets

2013-08-16 Thread daniel . daugherty
Changeset: d1034bd8cefc Author:adlertz Date: 2013-08-07 17:56 +0200 URL: http://hg.openjdk.java.net/hsx/hotspot-rt/hotspot/rev/d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG Summary: Hide private node to block mapping using public interface Reviewed-by: kvn, roland

Re: RFR(S): 8022071 Some vm/jvmti tests fail because cannot attach to the Java virtual machine

2013-08-16 Thread Tim Bell
On 08/16/13 09:51 AM, Staffan Larsen wrote: This failure happens when compiling with the VS 2012 compiler. The attach code relies on the order of two methods in the compiled binary and VS 2012 changed that order. The solution used is the linker flag /ORDER [1] which allows us to specify the or

RFR (XS): 7023754 JConsole Javascript plugin demo throws exception on window.print

2013-08-16 Thread Erik Gahlin
Could I please have a review of a fix that allows a script in the jconsole script plug-in to call print method in ScriptShellPanel class. Bug: http://monaco.us.oracle.com/detail.jsf?cr=7023754 Webrev: http://cr.openjdk.java.net/~egahlin/7023754/src/share/demo/scripting/jconsole-plugin/src/com/s

Re: RFR (S): 8023101 java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java fails

2013-08-16 Thread Srinivas Ramakrishna
Yes, with G1 and CMS there isn't a guarantee that this is collected if ExplicitGCInvokesConcurrent is enabled. But the test seems to be run without the option... May be it should explicitly turn off the option. In that case the size should definitely decrease by at least the size of the object

hg: jdk8/tl/jdk: 8019185: Inconsistency between JapaneseEra start dates and java.util.JapaneseImperialDate

2013-08-16 Thread roger . riggs
Changeset: acaa256e3f7c Author:rriggs Date: 2013-08-16 13:58 -0400 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/acaa256e3f7c 8019185: Inconsistency between JapaneseEra start dates and java.util.JapaneseImperialDate Summary: align Meiji start date with lib/calendar.properties to

hg: jdk8/tl/jdk: 2 new changesets

2013-08-16 Thread roger . riggs
Changeset: 53819fd0ab61 Author:rriggs Date: 2013-08-16 11:28 -0400 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/53819fd0ab61 8022770: java/time/tck/java/time/chrono/TCKChronology.java start failing 8022766: java/time/test/java/time/chrono/TestUmmAlQuraChronology.java failed. Summ

RFR(S): 8022071 Some vm/jvmti tests fail because cannot attach to the Java virtual machine

2013-08-16 Thread Staffan Larsen
This failure happens when compiling with the VS 2012 compiler. The attach code relies on the order of two methods in the compiled binary and VS 2012 changed that order. The solution used is the linker flag /ORDER [1] which allows us to specify the order in which methods are laid out in the binar

Re: RFR (S): 8023101 java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java fails

2013-08-16 Thread Mandy Chung
There isn't a guarantee for Runtime.gc() to reclaim any space. On the other hand, the test relies on the knowledge of our implementation (at least serial, parallel, concurrent collectors) does collect the large object array that is allocated in the old gen. With G1, the behavior is probably d

hg: jdk8/tl/langtools: 8023146: Sjavac test failes in langtools nightly

2013-08-16 Thread erik . joelsson
Changeset: 4300c2f5fb1b Author:erikj Date: 2013-08-16 16:00 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/4300c2f5fb1b 8023146: Sjavac test failes in langtools nightly Reviewed-by: mcimadamore, jfranck ! test/tools/sjavac/SJavac.java

Re: RFR (XS): 6358357: Division by zero in Threads tab when shrinking jconsole window

2013-08-16 Thread Erik Gahlin
Thanks for the input The graph will now disappear when the area for the plot becomes too small, which is probably the best way to handle a small window size. Here is an updated review with Leif suggestion http://cr.openjdk.java.net/~egahlin/6358357_2/ Erik Leif Samuelsson skrev 2013-08-15 2

hg: jdk8/tl/jdk: 8022797: Clarify spliterator characteristics for collections containing no elements

2013-08-16 Thread paul . sandoz
Changeset: 737b6c298d81 Author:psandoz Date: 2013-08-13 11:16 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/737b6c298d81 8022797: Clarify spliterator characteristics for collections containing no elements Reviewed-by: alanb, mduigou ! src/share/classes/java/util/Collection

hg: jdk8/tl/langtools: 2 new changesets

2013-08-16 Thread maurizio . cimadamore
Changeset: ec77c7b46c37 Author:jlahoda Date: 2013-08-15 22:33 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/ec77c7b46c37 8015809: More user friendly compile-time errors for uncaught exceptions in lambda expression Summary: Producing individual errors for uncaught unde

hg: jdk8/tl/jdk: 2 new changesets

2013-08-16 Thread paul . sandoz
Changeset: 2eebaff52a94 Author:psandoz Date: 2013-08-16 12:46 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/2eebaff52a94 8012940: More than 50 tests failed in Serialization/DeSerialization testing (test-mangled) Reviewed-by: ksrini + test/java/util/stream/bootlib/java/util

hg: jdk8/tl/jdk: 8023150: java/util/stream tests no longer compiling following JDK-8019401

2013-08-16 Thread paul . sandoz
Changeset: 5fe19566b6f0 Author:psandoz Date: 2013-08-16 12:29 +0200 URL: http://hg.openjdk.java.net/jdk8/tl/jdk/rev/5fe19566b6f0 8023150: java/util/stream tests no longer compiling following JDK-8019401 Reviewed-by: alanb ! test/java/util/stream/test/org/openjdk/tests/java/util/st

hg: jdk8/tl/langtools: 8022053: javac generates unverifiable initializer for nested subclass of local class

2013-08-16 Thread vicente . romero
Changeset: a6378c19836b Author:vromero Date: 2013-08-16 10:32 +0100 URL: http://hg.openjdk.java.net/jdk8/tl/langtools/rev/a6378c19836b 8022053: javac generates unverifiable initializer for nested subclass of local class Reviewed-by: jjg, mcimadamore ! src/share/classes/com/sun/too

Re: RFR (S): 8023101 java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java fails

2013-08-16 Thread Staffan Larsen
It maybe only happens with G1, but I don't think there is a guarantee that mbean.gc() will always cause all "freed" objects to be reclaimed. By allowing for the heap usage to be the same both before and after mbean.gc() I was hoping to make the test more stable. But perhaps someone from the GC