mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
6914300: ciEnv should export all well known classes
Reviewed-by: kvn, twisti
This commit is contained in:
parent
6c0af1575c
commit
98449cf2c2
64 changed files with 361 additions and 443 deletions
|
@ -95,14 +95,14 @@ oop JavaAssertions::createAssertionStatusDirectives(TRAPS) {
|
|||
int len;
|
||||
typeArrayOop t;
|
||||
len = OptionList::count(_packages);
|
||||
objArrayOop pn = oopFactory::new_objArray(SystemDictionary::string_klass(), len, CHECK_NULL);
|
||||
objArrayOop pn = oopFactory::new_objArray(SystemDictionary::String_klass(), len, CHECK_NULL);
|
||||
objArrayHandle pkgNames (THREAD, pn);
|
||||
t = oopFactory::new_typeArray(T_BOOLEAN, len, CHECK_NULL);
|
||||
typeArrayHandle pkgEnabled(THREAD, t);
|
||||
fillJavaArrays(_packages, len, pkgNames, pkgEnabled, CHECK_NULL);
|
||||
|
||||
len = OptionList::count(_classes);
|
||||
objArrayOop cn = oopFactory::new_objArray(SystemDictionary::string_klass(), len, CHECK_NULL);
|
||||
objArrayOop cn = oopFactory::new_objArray(SystemDictionary::String_klass(), len, CHECK_NULL);
|
||||
objArrayHandle classNames (THREAD, cn);
|
||||
t = oopFactory::new_typeArray(T_BOOLEAN, len, CHECK_NULL);
|
||||
typeArrayHandle classEnabled(THREAD, t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue