Merge
This commit is contained in:
commit
b2d0be746a
1
.hgtags
1
.hgtags
@ -539,3 +539,4 @@ a47b8125b7cc9ef59619745c163975fe935b57ed jdk-13+4
|
||||
e3ed960609927b5fdfd0a797159835cd83a81a31 jdk-13+5
|
||||
44f41693631f9b5ac78ff4d2bfabd6734fe46df2 jdk-12+29
|
||||
b5f05fe4a6f8b3996a000c20078b356d991ca8ec jdk-13+6
|
||||
6c377af36a5c4203f16aed8a5e4c2ecc08fcd8bd jdk-12+30
|
||||
|
@ -1,4 +1,4 @@
|
||||
File-Date: 2018-10-31
|
||||
File-Date: 2018-11-30
|
||||
%%
|
||||
Type: language
|
||||
Subtag: aa
|
||||
@ -593,6 +593,7 @@ Suppress-Script: Latn
|
||||
Type: language
|
||||
Subtag: lg
|
||||
Description: Ganda
|
||||
Description: Luganda
|
||||
Added: 2005-10-16
|
||||
%%
|
||||
Type: language
|
||||
|
@ -107,6 +107,14 @@ jvmtiCapabilities JvmtiManageCapabilities::init_onload_capabilities() {
|
||||
#ifndef ZERO
|
||||
jc.can_pop_frame = 1;
|
||||
jc.can_force_early_return = 1;
|
||||
// Workaround for 8195635:
|
||||
// disable pop_frame and force_early_return capabilities with Graal
|
||||
#if INCLUDE_JVMCI
|
||||
if (UseJVMCICompiler) {
|
||||
jc.can_pop_frame = 0;
|
||||
jc.can_force_early_return = 0;
|
||||
}
|
||||
#endif // INCLUDE_JVMCI
|
||||
#endif // !ZERO
|
||||
jc.can_get_source_debug_extension = 1;
|
||||
jc.can_access_local_variables = 1;
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -35,35 +35,29 @@ import jdk.internal.misc.VM;
|
||||
|
||||
/**
|
||||
* The {@code Character} class wraps a value of the primitive
|
||||
* type {@code char} in an object. An object of type
|
||||
* type {@code char} in an object. An object of class
|
||||
* {@code Character} contains a single field whose type is
|
||||
* {@code char}.
|
||||
* <p>
|
||||
* In addition, this class provides several methods for determining
|
||||
* a character's category (lowercase letter, digit, etc.) and for converting
|
||||
* characters from uppercase to lowercase and vice versa.
|
||||
* In addition, this class provides a large number of static methods for
|
||||
* determining a character's category (lowercase letter, digit, etc.)
|
||||
* and for converting characters from uppercase to lowercase and vice
|
||||
* versa.
|
||||
*
|
||||
* <h3><a id="conformance">Unicode Conformance</a></h3>
|
||||
* <p>
|
||||
* Character information is based on the Unicode Standard, version 11.0.0.
|
||||
* The fields and methods of class {@code Character} are defined in terms
|
||||
* of character information from the Unicode Standard, specifically the
|
||||
* <i>UnicodeData</i> file that is part of the Unicode Character Database.
|
||||
* This file specifies properties including name and category for every
|
||||
* assigned Unicode code point or character range. The file is available
|
||||
* from the Unicode Consortium at
|
||||
* <a href="http://www.unicode.org">http://www.unicode.org</a>.
|
||||
* <p>
|
||||
* The methods and data of class {@code Character} are defined by
|
||||
* the information in the <i>UnicodeData</i> file that is part of the
|
||||
* Unicode Character Database maintained by the Unicode
|
||||
* Consortium. This file specifies various properties including name
|
||||
* and general category for every defined Unicode code point or
|
||||
* character range.
|
||||
* <p>
|
||||
* The file and its description are available from the Unicode Consortium at:
|
||||
* <ul>
|
||||
* <li><a href="http://www.unicode.org">http://www.unicode.org</a>
|
||||
* </ul>
|
||||
* <p>
|
||||
* The code point, U+32FF, is reserved by the Unicode Consortium
|
||||
* to represent the Japanese square character for the new era that begins
|
||||
* May 2019. Relevant methods in the Character class return the same
|
||||
* properties as for the existing Japanese era characters (e.g., U+337E for
|
||||
* "Meizi"). For the details of the code point, refer to
|
||||
* <a href="http://blog.unicode.org/2018/09/new-japanese-era.html">
|
||||
* http://blog.unicode.org/2018/09/new-japanese-era.html</a>.
|
||||
* The Java SE 12 Platform uses character information from version 11.0
|
||||
* of the Unicode Standard, plus the Japanese Era code point,
|
||||
* {@code U+32FF}, from the first version of the Unicode Standard
|
||||
* after 11.0 that assigns the code point.
|
||||
*
|
||||
* <h3><a id="unicode">Unicode Character Representations</a></h3>
|
||||
*
|
||||
@ -9495,7 +9489,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
* character in a Java identifier.
|
||||
* <p>
|
||||
* A character may start a Java identifier if and only if
|
||||
* one of the following is true:
|
||||
* one of the following conditions is true:
|
||||
* <ul>
|
||||
* <li> {@link #isLetter(char) isLetter(ch)} returns {@code true}
|
||||
* <li> {@link #getType(char) getType(ch)} returns {@code LETTER_NUMBER}
|
||||
@ -9524,8 +9518,8 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
* Determines if the specified character may be part of a Java
|
||||
* identifier as other than the first character.
|
||||
* <p>
|
||||
* A character may be part of a Java identifier if and only if any
|
||||
* of the following are true:
|
||||
* A character may be part of a Java identifier if and only if one
|
||||
* of the following conditions is true:
|
||||
* <ul>
|
||||
* <li> it is a letter
|
||||
* <li> it is a currency symbol (such as {@code '$'})
|
||||
@ -9667,7 +9661,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
* identifier as other than the first character.
|
||||
* <p>
|
||||
* A character may be part of a Java identifier if any of the following
|
||||
* are true:
|
||||
* conditions are true:
|
||||
* <ul>
|
||||
* <li> it is a letter
|
||||
* <li> it is a currency symbol (such as {@code '$'})
|
||||
@ -9704,7 +9698,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
* identifier as other than the first character.
|
||||
* <p>
|
||||
* A character may be part of a Java identifier if any of the following
|
||||
* are true:
|
||||
* conditions are true:
|
||||
* <ul>
|
||||
* <li> it is a letter
|
||||
* <li> it is a currency symbol (such as {@code '$'})
|
||||
@ -9715,7 +9709,7 @@ class Character implements java.io.Serializable, Comparable<Character> {
|
||||
* <li> it is a non-spacing mark
|
||||
* <li> {@link #isIdentifierIgnorable(int)
|
||||
* isIdentifierIgnorable(codePoint)} returns {@code true} for
|
||||
* the character
|
||||
* the code point
|
||||
* </ul>
|
||||
*
|
||||
* @param codePoint the character (Unicode code point) to be tested.
|
||||
|
@ -88,15 +88,33 @@ import sun.util.calendar.CalendarDate;
|
||||
/**
|
||||
* An era in the Japanese Imperial calendar system.
|
||||
* <p>
|
||||
* This class defines the valid eras for the Japanese chronology.
|
||||
* Japan introduced the Gregorian calendar starting with Meiji 6.
|
||||
* Only Meiji and later eras are supported;
|
||||
* dates before Meiji 6, January 1 are not supported.
|
||||
* The number of the valid eras may increase, as new eras may be
|
||||
* defined by the Japanese government. Once an era is defined,
|
||||
* future versions of the platform may add a singleton instance
|
||||
* for it. The defined era is expected to have a consecutive integer
|
||||
* associated with it.
|
||||
* The Japanese government defines the official name and start date of
|
||||
* each era. Eras are consecutive and their date ranges do not overlap,
|
||||
* so the end date of one era is always the day before the start date
|
||||
* of the next era.
|
||||
* <p>
|
||||
* The Java SE Platform supports all eras defined by the Japanese government,
|
||||
* beginning with the Meiji era. Each era is identified in the Platform by an
|
||||
* integer value and a name. The {@link #of(int)} and {@link #valueOf(String)}
|
||||
* methods may be used to obtain a singleton instance of {@code JapaneseEra}
|
||||
* for each era. The {@link #values()} method returns the singleton instances
|
||||
* of all supported eras.
|
||||
* <p>
|
||||
* For convenience, this class declares a number of public static final fields
|
||||
* that refer to singleton instances returned by the {@link #values()} method.
|
||||
*
|
||||
* @apiNote
|
||||
* The fields declared in this class may evolve over time, in line with the
|
||||
* results of the {@link #values()} method. However, there is not necessarily
|
||||
* a 1:1 correspondence between the fields and the singleton instances.
|
||||
*
|
||||
* @apiNote
|
||||
* The Japanese government may announce a new era and define its start
|
||||
* date but not its official name. In this scenario, the singleton instance
|
||||
* that represents the new era may return a name that is not stable until
|
||||
* the official name is defined. Developers should exercise caution when
|
||||
* relying on the name returned by any singleton instance that does not
|
||||
* correspond to a public static final field.
|
||||
*
|
||||
* @implSpec
|
||||
* This class is immutable and thread-safe.
|
||||
@ -199,14 +217,18 @@ public final class JapaneseEra
|
||||
//-----------------------------------------------------------------------
|
||||
/**
|
||||
* Obtains an instance of {@code JapaneseEra} from an {@code int} value.
|
||||
* <ul>
|
||||
* <li>The value {@code 1} is associated with the 'Showa' era, because
|
||||
* it contains 1970-01-01 (ISO calendar system).</li>
|
||||
* <li>The values {@code -1} and {@code 0} are associated with two earlier
|
||||
* eras, Meiji and Taisho, respectively.</li>
|
||||
* <li>A value greater than {@code 1} is associated with a later era,
|
||||
* beginning with Heisei ({@code 2}).</li>
|
||||
* </ul>
|
||||
* <p>
|
||||
* The {@link #SHOWA} era that contains 1970-01-01 (ISO calendar system) has the value 1.
|
||||
* Later era is numbered 2 ({@link #HEISEI}). Earlier eras are numbered 0 ({@link #TAISHO}),
|
||||
* -1 ({@link #MEIJI}), only Meiji and later eras are supported.
|
||||
* <p>
|
||||
* In addition to the known era singletons, values for additional
|
||||
* eras may be defined. Those values are the {@link Era#getValue()}
|
||||
* of corresponding eras from the {@link #values()} method.
|
||||
* Every instance of {@code JapaneseEra} that is returned from the {@link #values()}
|
||||
* method has an int value (available via {@link Era#getValue()} which is
|
||||
* accepted by this method.
|
||||
*
|
||||
* @param japaneseEra the era to represent
|
||||
* @return the {@code JapaneseEra} singleton, not null
|
||||
|
@ -1,10 +1,10 @@
|
||||
## Mesa 3-D Graphics Library v4.1
|
||||
## Mesa 3-D Graphics Library v5.0
|
||||
|
||||
### Mesa License
|
||||
<pre>
|
||||
|
||||
Mesa 3-D graphics library
|
||||
Version: 4.1
|
||||
Version: 5.0
|
||||
|
||||
Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
|
||||
|
||||
|
@ -3,8 +3,7 @@
|
||||
### jQuery License
|
||||
```
|
||||
jQuery v 3.3.1
|
||||
Copyright 2005, 2018 jQuery Foundation, Inc. and other contributors
|
||||
http://jquery.com/
|
||||
Copyright JS Foundation and other contributors, https://js.foundation/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -27,4 +27,4 @@
|
||||
#
|
||||
#############################################################################
|
||||
|
||||
vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/Test.java 8208235 solaris-all
|
||||
vmTestbase/vm/mlvm/meth/stress/jni/nativeAndMH/Test.java 8058176 solaris-all
|
||||
|
@ -109,8 +109,6 @@ vmTestbase/vm/mlvm/anonloader/stress/oome/heap/Test.java 8186299 gener
|
||||
vmTestbase/vm/mlvm/anonloader/stress/oome/metaspace/Test.java 8186299 generic-all
|
||||
|
||||
# jvmti tests
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java 8195635 generic-all
|
||||
|
||||
vmTestbase/nsk/jvmti/PopFrame/popframe009/TestDescription.java 8195639 generic-all
|
||||
|
||||
vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java 8195674 generic-all
|
||||
@ -127,6 +125,61 @@ vmTestbase/nsk/jvmti/StopThread/stopthrd007/TestDescription.java
|
||||
|
||||
serviceability/jvmti/FieldAccessWatch/FieldAccessWatch.java 8202482 generic-all
|
||||
|
||||
# tests require pop_frame and force_early_return capabilities
|
||||
vmTestbase/nsk/jdb/pop/pop001/pop001.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdb/pop_exception/pop_exception001/pop_exception001.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdb/reenter/reenter001/reenter001.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc01x002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc02x002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc04x002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc06x001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc08x001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/BScenarios/hotswap/tc10x002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/MethodExitEvent/returnValue/returnValue003/returnValue003.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001/TestDescription.jav 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/Scenarios/invokeMethod/popframes001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/ThreadReference/popFrames/popframes001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/VirtualMachine/redefineClasses/redefineclasses002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/stress/serial/forceEarlyReturn002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdi/stress/serial/mixed002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jdwp/ThreadReference/ForceEarlyReturn/forceEarlyReturn002/forceEarlyReturn002.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/ForceEarlyReturn/ForceEarlyReturn002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/PopFrame/popframe001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/PopFrame/popframe003/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/PopFrame/popframe005/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/capability/CM01/cm01t007/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/capability/CM03/cm03t001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS102/hs102t001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t001/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS201/hs201t002/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS202/hs202t002/hs202t002.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t001/hs203t001.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t002/hs203t002.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t003/hs203t003.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS203/hs203t004/hs203t004.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t001/hs204t001.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t003/hs204t003.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/hotswap/HS204/hs204t004/hs204t004.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretbase/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretfp/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretint/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretlong/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretobj/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/nsk/jvmti/unit/ForceEarlyReturn/earlyretstr/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_a/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manySame_a/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_b/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_a/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2same_b/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_a/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_none2indy_b/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInTarget/TestDescription.java 8195635 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/stepBreakPopReturn/INDIFY_Test.java 8195635 generic-all
|
||||
|
||||
compiler/stable/TestStableBoolean.java 8204347 generic-all
|
||||
compiler/stable/TestStableByte.java 8204347 generic-all
|
||||
compiler/stable/TestStableChar.java 8204347 generic-all
|
||||
|
@ -57,9 +57,9 @@ compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java 8190680 generic-all
|
||||
|
||||
compiler/runtime/Test8168712.java 8211769,8211771 generic-ppc64,generic-ppc64le,linux-s390x
|
||||
|
||||
applications/ctw/modules/java_desktop.java 8217851 windows-all
|
||||
applications/ctw/modules/java_desktop_2.java 8217851 windows-all
|
||||
applications/ctw/modules/jdk_jconsole.java 8217851 windows-all
|
||||
applications/ctw/modules/java_desktop.java 8189604 windows-all
|
||||
applications/ctw/modules/java_desktop_2.java 8189604 windows-all
|
||||
applications/ctw/modules/jdk_jconsole.java 8189604 windows-all
|
||||
|
||||
#############################################################################
|
||||
|
||||
@ -67,12 +67,12 @@ applications/ctw/modules/jdk_jconsole.java 8217851 windows-all
|
||||
|
||||
gc/epsilon/TestMemoryMXBeans.java 8206434 generic-all
|
||||
gc/g1/humongousObjects/objectGraphTest/TestObjectGraphAfterGC.java 8156755 generic-all
|
||||
gc/survivorAlignment/TestPromotionToSurvivor.java 8129886 generic-all
|
||||
gc/survivorAlignment/TestPromotionToSurvivor.java 8218049 generic-all
|
||||
gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java 8218049 generic-all
|
||||
gc/g1/logging/TestG1LoggingFailure.java 8169634 generic-all
|
||||
gc/g1/humongousObjects/TestHeapCounters.java 8178918 generic-all
|
||||
gc/stress/gclocker/TestGCLockerWithParallel.java 8180622 generic-all
|
||||
gc/stress/gclocker/TestGCLockerWithG1.java 8180622 generic-all
|
||||
gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java 8177765 generic-all
|
||||
gc/stress/TestJNIBlockFullGC/TestJNIBlockFullGC.java 8192647 generic-all
|
||||
gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java 8193639 solaris-all
|
||||
|
||||
@ -171,7 +171,7 @@ vmTestbase/metaspace/gc/firstGC_99m/TestDescription.java 8208250 generic-all
|
||||
vmTestbase/metaspace/gc/firstGC_default/TestDescription.java 8208250 generic-all
|
||||
|
||||
vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted003/TestDescription.java 6606767 generic-all
|
||||
vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java 7013634,6606767 generic-all
|
||||
vmTestbase/nsk/jvmti/ResourceExhausted/resexhausted004/TestDescription.java 6606767 generic-all
|
||||
vmTestbase/nsk/jvmti/scenarios/extension/EX03/ex03t001/TestDescription.java 8173658 generic-all
|
||||
vmTestbase/nsk/jvmti/AttachOnDemand/attach045/TestDescription.java 8202971 generic-all
|
||||
|
||||
@ -181,14 +181,14 @@ vmTestbase/jit/escape/LockCoarsening/LockCoarsening001/TestDescription.java 8148
|
||||
vmTestbase/jit/escape/LockCoarsening/LockCoarsening002/TestDescription.java 8208259 generic-all
|
||||
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/TestDescription.java 8013267 generic-all
|
||||
vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java 8208257,8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/java/sequences/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java 8208255 generic-all
|
||||
vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java 8208257,8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/java/sequences/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java 8058176 generic-all
|
||||
vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/TestDescription.java 8208278 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2none_a/TestDescription.java 8013267 generic-all
|
||||
vmTestbase/vm/mlvm/indy/func/jvmti/mergeCP_indy2manyDiff_b/TestDescription.java 8013267 generic-all
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -117,6 +117,8 @@ public class AotCompiler {
|
||||
// Execute with asserts
|
||||
args.add("-J-ea");
|
||||
args.add("-J-esa");
|
||||
// we don't want to run jaotc w/ Xcomp even if it's in extraopts
|
||||
args.add("-J-Xmixed");
|
||||
return launchJaotc(args, extraopts);
|
||||
}
|
||||
|
||||
|
@ -397,7 +397,7 @@ public class INDIFY_Test extends MlvmTest {
|
||||
// TODO: exclude GC time, compilation time (optionally) from measurements
|
||||
|
||||
print("Comparing invocation time orders");
|
||||
verifyTimeOrder(results[REFLECTION_CALL], results[INVOKE_EXACT]);
|
||||
verifyTimeOrder(results[INDY], results[REFLECTION_CALL]);
|
||||
verifyTimeOrder(results[INVOKE_EXACT], results[DIRECT_CALL]);
|
||||
verifyTimeOrder(results[INVOKE], results[DIRECT_CALL]);
|
||||
verifyTimeOrder(results[INVOKE_EXACT], results[INDY]);
|
||||
|
@ -29,3 +29,4 @@
|
||||
|
||||
java/lang/invoke/MethodHandles/CatchExceptionTest.java 8146623 generic-all
|
||||
java/util/concurrent/CountDownLatch/Basic.java 8195057 generic-all
|
||||
java/util/stream/test/org/openjdk/tests/java/util/stream/StreamLinkTest.java 8216317 solaris-all
|
||||
|
@ -69,6 +69,29 @@ java/lang/ref/OOMEInReferenceHandler.java 8196611
|
||||
java/lang/Runtime/exec/LotsOfOutput.java 8196611 generic-all
|
||||
java/util/concurrent/ScheduledThreadPoolExecutor/BasicCancelTest.java 8196611 generic-all
|
||||
|
||||
# tests require pop_frame and force_early_return capabilities
|
||||
com/sun/jdi/RedefineTTYLineNumber.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineG.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineCrossStart.java 8195635 generic-all
|
||||
com/sun/jdi/PopSynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineTTYLineNumber.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineG.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineCrossStart.java 8195635 generic-all
|
||||
com/sun/jdi/PopSynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAsynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAndStepTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAsynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAndStepTest.java 8195635 generic-all
|
||||
com/sun/jdi/EarlyReturnTest.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineTTYLineNumber.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineG.java 8195635 generic-all
|
||||
com/sun/jdi/RedefineCrossStart.java 8195635 generic-all
|
||||
com/sun/jdi/PopSynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAsynchronousTest.java 8195635 generic-all
|
||||
com/sun/jdi/PopAndStepTest.java 8195635 generic-all
|
||||
com/sun/jdi/EarlyReturnTest.java 8195635 generic-all
|
||||
com/sun/jdi/EarlyReturnTest.java 8195635 generic-all
|
||||
|
||||
# Next JFR tests fail with Graal. Assuming 8193210.
|
||||
jdk/jfr/event/compiler/TestCodeSweeper.java 8193210 generic-all
|
||||
jdk/jfr/event/compiler/TestCompilerInlining.java 8193210 generic-all
|
||||
|
@ -117,7 +117,7 @@ public class CheckCipherSuites {
|
||||
"TLS_EMPTY_RENEGOTIATION_INFO_SCSV"
|
||||
};
|
||||
|
||||
// List of enabled cipher suites when the "crypto.policy" security
|
||||
// List of supported cipher suites when the "crypto.policy" security
|
||||
// property is set to "unlimited" (the default value).
|
||||
private final static String[] SUPPORTED_DEFAULT = {
|
||||
"TLS_AES_128_GCM_SHA256",
|
||||
|
Loading…
x
Reference in New Issue
Block a user