hg: jdk8u/jdk8u/jdk: 38 new changesets

lana.steuck at oracle.com lana.steuck at oracle.com
Tue Jun 16 00:24:53 UTC 2015


Changeset: 9fb6ca49eacb
Author:    kshefov
Date:      2015-05-29 17:27 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/9fb6ca49eacb

8081479: Backport JDBC tests from JDK 9 from test/java/sql and test/javax/sql to JDK 8u.
Reviewed-by: lancea
Contributed-by: maxim.soloviev at oracle.com

+ test/java/sql/testng/TEST.properties
+ test/java/sql/testng/test/sql/BatchUpdateExceptionTests.java
+ test/java/sql/testng/test/sql/DataTruncationTests.java
+ test/java/sql/testng/test/sql/DateTests.java
+ test/java/sql/testng/test/sql/DriverManagerPermissionsTests.java
+ test/java/sql/testng/test/sql/DriverManagerTests.java
+ test/java/sql/testng/test/sql/SQLClientInfoExceptionTests.java
+ test/java/sql/testng/test/sql/SQLDataExceptionTests.java
+ test/java/sql/testng/test/sql/SQLExceptionTests.java
+ test/java/sql/testng/test/sql/SQLFeatureNotSupportedExceptionTests.java
+ test/java/sql/testng/test/sql/SQLIntegrityConstraintViolationExceptionTests.java
+ test/java/sql/testng/test/sql/SQLInvalidAuthorizationSpecExceptionTests.java
+ test/java/sql/testng/test/sql/SQLNonTransientConnectionExceptionTests.java
+ test/java/sql/testng/test/sql/SQLNonTransientExceptionTests.java
+ test/java/sql/testng/test/sql/SQLRecoverableExceptionTests.java
+ test/java/sql/testng/test/sql/SQLSyntaxErrorExceptionTests.java
+ test/java/sql/testng/test/sql/SQLTimeoutExceptionTests.java
+ test/java/sql/testng/test/sql/SQLTransactionRollbackExceptionTests.java
+ test/java/sql/testng/test/sql/SQLTransientConnectionExceptionTests.java
+ test/java/sql/testng/test/sql/SQLTransientExceptionTests.java
+ test/java/sql/testng/test/sql/SQLWarningTests.java
+ test/java/sql/testng/test/sql/TimeTests.java
+ test/java/sql/testng/test/sql/TimestampTests.java
+ test/java/sql/testng/util/BaseTest.java
+ test/java/sql/testng/util/DriverActionImpl.java
+ test/java/sql/testng/util/SerializedBatchUpdateException.java
+ test/java/sql/testng/util/StubConnection.java
+ test/java/sql/testng/util/StubDriver.java
+ test/java/sql/testng/util/StubDriverDA.java
+ test/java/sql/testng/util/TestPolicy.java
+ test/javax/sql/testng/TEST.properties
+ test/javax/sql/testng/jars/badFactory/META-INF/services/javax.sql.rowset.RowSetFactory
+ test/javax/sql/testng/jars/goodFactory/META-INF/services/javax.sql.rowset.RowSetFactory
+ test/javax/sql/testng/test/rowset/BaseRowSetTests.java
+ test/javax/sql/testng/test/rowset/CommonRowSetTests.java
+ test/javax/sql/testng/test/rowset/RowSetFactoryTests.java
+ test/javax/sql/testng/test/rowset/RowSetMetaDataTests.java
+ test/javax/sql/testng/test/rowset/RowSetProviderTests.java
+ test/javax/sql/testng/test/rowset/RowSetWarningTests.java
+ test/javax/sql/testng/test/rowset/cachedrowset/CachedRowSetTests.java
+ test/javax/sql/testng/test/rowset/cachedrowset/CommonCachedRowSetTests.java
+ test/javax/sql/testng/test/rowset/filteredrowset/CityFilter.java
+ test/javax/sql/testng/test/rowset/filteredrowset/FilteredRowSetTests.java
+ test/javax/sql/testng/test/rowset/filteredrowset/PrimaryKeyFilter.java
+ test/javax/sql/testng/test/rowset/joinrowset/JoinRowSetTests.java
+ test/javax/sql/testng/test/rowset/serial/SQLInputImplTests.java
+ test/javax/sql/testng/test/rowset/serial/SQLOutputImplTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialArrayTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialBlobTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialClobTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialDataLinkTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialExceptionTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialJavaObjectTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialRefTests.java
+ test/javax/sql/testng/test/rowset/serial/SerialStructTests.java
+ test/javax/sql/testng/test/rowset/spi/SyncFactoryExceptionTests.java
+ test/javax/sql/testng/test/rowset/spi/SyncFactoryPermissionsTests.java
+ test/javax/sql/testng/test/rowset/spi/SyncFactoryTests.java
+ test/javax/sql/testng/test/rowset/spi/SyncProviderExceptionTests.java
+ test/javax/sql/testng/test/rowset/webrowset/CommonWebRowSetTests.java
+ test/javax/sql/testng/test/rowset/webrowset/WebRowSetTests.java
+ test/javax/sql/testng/util/PropertyStubProvider.java
+ test/javax/sql/testng/util/StubArray.java
+ test/javax/sql/testng/util/StubBaseRowSet.java
+ test/javax/sql/testng/util/StubBlob.java
+ test/javax/sql/testng/util/StubCachedRowSetImpl.java
+ test/javax/sql/testng/util/StubClob.java
+ test/javax/sql/testng/util/StubContext.java
+ test/javax/sql/testng/util/StubFilteredRowSetImpl.java
+ test/javax/sql/testng/util/StubJdbcRowSetImpl.java
+ test/javax/sql/testng/util/StubJoinRowSetImpl.java
+ test/javax/sql/testng/util/StubNClob.java
+ test/javax/sql/testng/util/StubRef.java
+ test/javax/sql/testng/util/StubRowId.java
+ test/javax/sql/testng/util/StubRowSetFactory.java
+ test/javax/sql/testng/util/StubSQLXML.java
+ test/javax/sql/testng/util/StubStruct.java
+ test/javax/sql/testng/util/StubSyncProvider.java
+ test/javax/sql/testng/util/StubSyncResolver.java
+ test/javax/sql/testng/util/StubWebRowSetImpl.java
+ test/javax/sql/testng/util/SuperHero.java
+ test/javax/sql/testng/util/TestRowSetListener.java
+ test/javax/sql/testng/util/TestSQLDataImpl.java
+ test/javax/sql/testng/xml/COFFEE_ROWS.xml
+ test/javax/sql/testng/xml/DELETED_COFFEE_ROWS.xml
+ test/javax/sql/testng/xml/INSERTED_COFFEE_ROWS.xml
+ test/javax/sql/testng/xml/MODFIED_DELETED_COFFEE_ROWS.xml
+ test/javax/sql/testng/xml/UPDATED_COFFEE_ROWS.xml
+ test/javax/sql/testng/xml/UPDATED_INSERTED_COFFEE_ROWS.xml

Changeset: e62f6298008c
Author:    igerasim
Date:      2015-05-30 15:19 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/e62f6298008c

7011441: jndi/ldap/Connection.java needs to avoid spurious wakeup
Reviewed-by: dholmes

! src/share/classes/com/sun/jndi/ldap/Connection.java

Changeset: c716a8cc3454
Author:    aefimov
Date:      2015-05-31 18:55 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/c716a8cc3454

8081392: getNodeValue should return 'null' value for Element nodes
Reviewed-by: joehw

! test/javax/xml/jaxp/common/8032908/TestFunc.java
! test/javax/xml/jaxp/common/8032908/XSLT.java
! test/javax/xml/jaxp/transform/8062518/DocumentExtFunc.java

Changeset: cc67fbf19cfb
Author:    bae
Date:      2015-06-02 17:36 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/cc67fbf19cfb

8023794: [macosx] LCD Rendering hints seems not working without FRACTIONALMETRICS=ON
Reviewed-by: serb, prr

! src/macosx/classes/sun/lwawt/macosx/LWCToolkit.java
! src/macosx/native/sun/font/AWTStrike.m
! src/macosx/native/sun/font/CGGlyphImages.m
! src/share/classes/sun/java2d/opengl/OGLSurfaceData.java
! src/share/native/sun/java2d/opengl/OGLContext.c
! src/share/native/sun/java2d/opengl/OGLTextRenderer.c

Changeset: e757bd8d89c3
Author:    erikj
Date:      2015-06-03 10:47 +0200
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/e757bd8d89c3

8043160: JDK 9 Build failure in accessbridge
Reviewed-by: prr, tbell

! make/CompileJavaClasses.gmk
! make/lib/PlatformLibraries.gmk

Changeset: 00229154077d
Author:    mcherkas
Date:      2015-06-03 17:48 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/00229154077d

8077409: Drawing deviates when validate() is invoked on java.awt.ScrollPane
Reviewed-by: bae

! src/share/classes/java/awt/ScrollPane.java
+ test/java/awt/ScrollPane/bug8077409Test.java

Changeset: db989e88ef7f
Author:    anashaty
Date:      2015-06-04 15:29 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/db989e88ef7f

8078606: Deadlock in awt clipboard
Reviewed-by: azvegint, bae

! src/solaris/classes/sun/awt/X11/XClipboard.java
! src/solaris/classes/sun/awt/X11/XRootWindow.java

Changeset: b26427c5b3fe
Author:    anashaty
Date:      2015-06-04 16:32 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/b26427c5b3fe

8068886: IDEA IntelliJ crashes in objc_msgSend when an accessibility tool is enabled
Reviewed-by: serb, bae

! src/macosx/native/sun/awt/CFRetainedResource.m
! src/macosx/native/sun/awt/LWCToolkit.m
! src/macosx/native/sun/osxapp/NSApplicationAWT.h
! src/macosx/native/sun/osxapp/NSApplicationAWT.m
! src/share/classes/sun/awt/datatransfer/DataTransferer.java

Changeset: 159ccfdc37f7
Author:    serb
Date:      2015-05-06 18:30 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/159ccfdc37f7

6206437: Typo in JInternalFrame setDefaultCloseOperation() doc (WindowClosing --> internalFrameClosing)
Reviewed-by: alexsch, azvegint

! src/share/classes/javax/swing/JInternalFrame.java

Changeset: be328bcc47de
Author:    serb
Date:      2015-04-23 16:54 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/be328bcc47de

6829245: Reg test: java/awt/Component/isLightweightCrash/StubPeerCrash.java fails
Reviewed-by: azvegint, alexsch

- test/java/awt/Component/isLightweightCrash/StubPeerCrash.java

Changeset: 0504eb4e7de4
Author:    serb
Date:      2015-05-08 20:06 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/0504eb4e7de4

8013820: JavaDoc for JSpinner contains errors
Reviewed-by: azvegint, alexsch

! src/share/classes/javax/swing/JSpinner.java

Changeset: baa89244219c
Author:    serb
Date:      2015-05-16 21:31 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/baa89244219c

8041654: OutOfMemoryError: RepaintManager doesn't clean up cache of volatile images
Reviewed-by: azvegint, ant

! src/share/classes/javax/swing/RepaintManager.java
! src/solaris/classes/sun/awt/X11/XToolkit.java
+ test/javax/swing/RepaintManager/DisplayListenerLeak/DisplayListenerLeak.java

Changeset: bb201d068f2f
Author:    pchelko
Date:      2014-05-07 19:40 +0400
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/bb201d068f2f

8042585: [macosx] Unused code in LWCToolkit.m
Reviewed-by: serb, azvegint

! src/macosx/native/sun/awt/LWCToolkit.m

Changeset: 477aabdb8252
Author:    serb
Date:      2015-05-23 15:13 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/477aabdb8252

8061831: [OGL] "java.lang.InternalError: not implemented yet" during the blit of VI to VI in xor mode
Reviewed-by: flar, bae

! src/share/classes/sun/java2d/opengl/OGLBlitLoops.java
+ test/java/awt/image/DrawImage/IncorrectClipXorModeSurface2Surface.java

Changeset: f0752941eb11
Author:    serb
Date:      2015-05-22 19:27 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/f0752941eb11

8071306: GUI perfomance are very slow compared java 1.6.0_45
Reviewed-by: azvegint, ant

! src/share/classes/java/awt/Component.java
! src/share/classes/java/awt/Container.java
+ test/java/awt/Component/SetEnabledPerformance/SetEnabledPerformance.java

Changeset: a2f7c58323cc
Author:    serb
Date:      2015-05-13 18:06 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/a2f7c58323cc

8072775: Tremendous memory usage by JTextArea
Reviewed-by: vadim, prr

! src/share/classes/sun/font/StandardTextSource.java
! src/share/classes/sun/font/TextLabelFactory.java
+ test/javax/swing/JTextArea/TextViewOOM/TextViewOOM.java

Changeset: 19632a27717d
Author:    serb
Date:      2015-05-08 19:14 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/19632a27717d

8078149: [macosx] The text of the TextArea is not wrapped at word boundaries
Reviewed-by: azvegint, alexsch

! src/macosx/classes/sun/lwawt/LWTextAreaPeer.java

Changeset: 89da676bcc6b
Author:    serb
Date:      2015-05-19 21:58 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/89da676bcc6b

8080488: JNI exception pending in jdk/src/windows/native/sun/windows/awt_Frame.cpp
Reviewed-by: dcherepanov, aivanov

! src/windows/native/sun/windows/awt_Frame.cpp

Changeset: 078da6744136
Author:    kshefov
Date:      2015-06-05 16:05 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/078da6744136

8068416: LFGarbageCollectedTest.java fails with OOME: "GC overhead limit exceeded"
Reviewed-by: vlivanov

! test/java/lang/invoke/LFCaching/LFGarbageCollectedTest.java

Changeset: 275e4c8028d5
Author:    yan
Date:      2015-06-05 18:50 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/275e4c8028d5

8077866: [TESTBUG] Some of java.lang tests cannot be run on compact profiles 1, 2
Reviewed-by: robm
Contributed-by: denis.kononenko at oracle.com

! test/TEST.groups

Changeset: c2bcfc5f18ba
Author:    kshefov
Date:      2015-06-05 19:11 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/c2bcfc5f18ba

8062198: Add RowSetMetaDataImpl Tests and add column range validation to isdefinitlyWritable
Reviewed-by: joehw, lancea
Contributed-by: maxim.soloviev at oracle.com

! src/share/classes/javax/sql/rowset/RowSetMetaDataImpl.java

Changeset: 2ce492a2f94e
Author:    kshefov
Date:      2015-06-05 19:13 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/2ce492a2f94e

8059411: RowSetWarning does not correctly chain warnings
Reviewed-by: darcy, smarks, mchung, lancea
Contributed-by: maxim.soloviev at oracle.com

! src/share/classes/javax/sql/rowset/RowSetWarning.java

Changeset: 2a7c6cc0f9f3
Author:    kshefov
Date:      2015-06-05 19:14 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/2a7c6cc0f9f3

8066188: BaseRowSet returns the wrong default value for escape processing
Reviewed-by: alanb, lancea
Contributed-by: maxim.soloviev at oracle.com

! src/share/classes/javax/sql/rowset/BaseRowSet.java

Changeset: 60b7b4b01453
Author:    alexsch
Date:      2015-06-05 20:46 +0400
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/60b7b4b01453

8080137: Dragged events for extra mouse buttons (4, 5, 6) are not generated on JSplitPane
Reviewed-by: serb, azvegint

! src/share/classes/java/awt/Container.java
+ test/java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java

Changeset: 8e7854ac3257
Author:    prr
Date:      2015-06-05 12:02 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/8e7854ac3257

8064833: [macosx] Native font lookup uses family+style, not full name/postscript name
Reviewed-by: bae, serb

! src/macosx/classes/sun/font/CFont.java
! src/macosx/classes/sun/font/CFontManager.java
! src/macosx/native/sun/font/AWTFont.m
! src/share/classes/sun/font/Font2D.java
! src/share/classes/sun/font/FontFamily.java
! src/share/classes/sun/font/TrueTypeFont.java
! src/share/demo/jfc/Font2DTest/FontPanel.java
+ test/java/awt/FontClass/HelvLtOblTest.java

Changeset: 195da5ce4881
Author:    prr
Date:      2015-06-05 12:05 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/195da5ce4881

8076979: [Regression] Test closed/java/awt/FontClass/DebugFonts.java fails with stackoverflow error
Reviewed-by: serb, jgodinez

! src/share/classes/sun/font/FontFamily.java
+ test/java/awt/FontClass/DebugFonts.java

Changeset: 91119cb23a31
Author:    bae
Date:      2015-06-08 11:20 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/91119cb23a31

8085910: OGL text renderer: gamma lut cleanup
Reviewed-by: serb, prr

! src/share/native/sun/java2d/opengl/OGLTextRenderer.c

Changeset: e37f0c1b13d7
Author:    coffeys
Date:      2015-06-08 12:21 +0100
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/e37f0c1b13d7

8077418: StackOverflowError during PolicyFile lookup
Reviewed-by: mullan

! src/share/classes/java/security/ProtectionDomain.java

Changeset: 51e129e42c92
Author:    ysuenaga
Date:      2014-09-23 15:48 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/51e129e42c92

8017773: OpenJDK7 returns incorrect TrueType font metrics
Reviewed-by: prr, bae

! src/share/native/sun/font/freetypeScaler.c

Changeset: c4043aa4b2ed
Author:    amurillo
Date:      2015-06-09 11:24 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/c4043aa4b2ed

Merge

- test/java/awt/Component/isLightweightCrash/StubPeerCrash.java

Changeset: 7a2767ebceb0
Author:    aefimov
Date:      2015-06-10 16:47 +0300
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/7a2767ebceb0

7156085: ArrayIndexOutOfBoundsException throws in UTF8Reader of SAXParser
Summary: improve support for supplementary characters
Reviewed-by: joehw

+ test/javax/xml/jaxp/testng/parse/jdk7156085/UTF8ReaderBug.java

Changeset: b62d4e2d55e3
Author:    robm
Date:      2015-06-11 13:08 +0100
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/b62d4e2d55e3

8080819: Inet4AddressImpl regression caused by JDK-7180557
Reviewed-by: michaelm
Contributed-by: brian.toal at gmail.com

! src/solaris/native/java/net/Inet4AddressImpl.c
! src/solaris/native/java/net/Inet6AddressImpl.c

Changeset: 32f149f8fbc0
Author:    sherman
Date:      2015-05-21 15:42 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/32f149f8fbc0

8080248: Coding regression in HKSCS charsets
Summary: to update the sp correctly when encoding supplementary characters
Reviewed-by: martin

! src/share/classes/sun/nio/cs/ext/HKSCS.java
! test/sun/nio/cs/TestStringCoding.java

Changeset: 8601693ed09e
Author:    mfang
Date:      2015-06-10 14:22 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/8601693ed09e

8083601: jdk8u60 l10n resource file translation update 2
Reviewed-by: ksrini, yhuang

! src/macosx/classes/com/apple/laf/resources/aqua_sv.properties
! src/share/classes/com/sun/accessibility/internal/resources/accessibility_sv.properties
! src/share/classes/com/sun/java/swing/plaf/gtk/resources/gtk_sv.properties
! src/share/classes/com/sun/java/swing/plaf/motif/resources/motif_sv.properties
! src/share/classes/com/sun/rowset/RowSetResourceBundle_sv.properties
! src/share/classes/sun/applet/resources/MsgAppletViewer_sv.java
! src/share/classes/sun/awt/resources/awt_sv.properties
! src/share/classes/sun/launcher/resources/launcher_de.properties
! src/share/classes/sun/launcher/resources/launcher_es.properties
! src/share/classes/sun/launcher/resources/launcher_fr.properties
! src/share/classes/sun/launcher/resources/launcher_it.properties
! src/share/classes/sun/launcher/resources/launcher_ja.properties
! src/share/classes/sun/launcher/resources/launcher_ko.properties
! src/share/classes/sun/launcher/resources/launcher_pt_BR.properties
! src/share/classes/sun/launcher/resources/launcher_sv.properties
! src/share/classes/sun/launcher/resources/launcher_zh_CN.properties
! src/share/classes/sun/launcher/resources/launcher_zh_TW.properties
! src/share/classes/sun/management/resources/agent_sv.properties
! src/share/classes/sun/print/resources/serviceui_sv.properties
! src/share/classes/sun/security/tools/policytool/Resources_sv.java
! src/share/classes/sun/security/util/AuthResources_sv.java
! src/share/classes/sun/security/util/Resources_sv.java
! src/share/classes/sun/tools/jar/resources/jar_de.properties
! src/share/classes/sun/tools/jar/resources/jar_es.properties
! src/share/classes/sun/tools/jar/resources/jar_fr.properties
! src/share/classes/sun/tools/jar/resources/jar_it.properties
! src/share/classes/sun/tools/jar/resources/jar_ja.properties
! src/share/classes/sun/tools/jar/resources/jar_ko.properties
! src/share/classes/sun/tools/jar/resources/jar_pt_BR.properties
! src/share/classes/sun/tools/jar/resources/jar_sv.properties
! src/share/classes/sun/tools/jar/resources/jar_zh_CN.properties
! src/share/classes/sun/tools/jar/resources/jar_zh_TW.properties

Changeset: 608656dfa6ab
Author:    mfang
Date:      2015-06-11 10:16 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/608656dfa6ab

Merge


Changeset: 8fd9ac5eb0a4
Author:    prr
Date:      2015-06-11 12:23 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/8fd9ac5eb0a4

8081756: Mastering Matrix Manipulations
Reviewed-by: serb, bae, mschoene

! src/share/native/sun/java2d/cmm/lcms/cmsopt.c

Changeset: 3767befecb32
Author:    coffeys
Date:      2015-06-12 12:39 +0100
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/3767befecb32

8072384: Setting IP_TOS on java.net sockets not working on unix
Reviewed-by: michaelm

! make/mapfiles/libnet/mapfile-vers
! src/share/classes/java/net/AbstractPlainSocketImpl.java
! src/share/classes/java/net/DatagramSocket.java
! src/share/classes/java/net/Socket.java
! src/solaris/classes/java/net/PlainDatagramSocketImpl.java
! src/solaris/classes/java/net/PlainSocketImpl.java
! src/solaris/native/java/net/PlainDatagramSocketImpl.c
! src/solaris/native/java/net/PlainSocketImpl.c
! src/solaris/native/java/net/net_util_md.c
! test/jdk/net/Sockets/Test.java

Changeset: 4acc6e025277
Author:    lana
Date:      2015-06-12 18:46 -0700
URL:       http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/4acc6e025277

Merge

- test/java/awt/Component/isLightweightCrash/StubPeerCrash.java



More information about the jdk8u-changes mailing list