Re: [9] RfR 8047085: PKCS11/NSS tests failing intermittently on Windows

2014-06-18 Thread Vincent Ryan
Thanks Sean. Our existing PKCS11 tests are sufficient as regression tests so I’ve added ’noreg-self’. Also, I didn’t set a subcomponent value as only the PKCS11 testsuite has changed not the PKCS11 implementation. On 17 Jun 2014, at 19:55, Sean Mullan wrote: > The bug needs a noreg label. Als

Re: RFR 8029994: Support "include" and "includedir" in krb5.conf

2014-06-18 Thread Sean Mullan
Just a few comments on Config.java: 479 if (dups.contains(file)) { 480 throw new IOException("Profile path included more than once"); 481 } else { 482 dups.add(file); 483 } This could be compressed into one call as: if (!dups.add(file)) {

Re: [9] RfR 8047085: PKCS11/NSS tests failing intermittently on Windows

2014-06-18 Thread Sean Mullan
On 06/18/2014 05:59 AM, Vincent Ryan wrote: Thanks Sean. Our existing PKCS11 tests are sufficient as regression tests so I’ve added ’noreg-self’. Also, I didn’t set a subcomponent value as only the PKCS11 testsuite has changed not the PKCS11 implementation. Hmm. I've always considered the su

Re: [9] RfR 8047085: PKCS11/NSS tests failing intermittently on Windows

2014-06-18 Thread Vincent Ryan
OK. I’ve updated both bug reports. On 18 Jun 2014, at 18:06, Sean Mullan wrote: > On 06/18/2014 05:59 AM, Vincent Ryan wrote: >> Thanks Sean. >> >> Our existing PKCS11 tests are sufficient as regression tests so I’ve added >> ’noreg-self’. >> Also, I didn’t set a subcomponent value as only th

Re: RFR 8027575: b113 causing a lot of memory allocation and regression for wls_webapp_atomics

2014-06-18 Thread Valerie Peng
Tony or Vinnie, either of you have time to review? Thanks, Valerie On 5/15/2014 4:08 PM, Valerie (Yu-Ching) Peng wrote: Can someone help reviewing this SunJCE provider fix? Essentially, CipherCore class is updated to minimize memory allocation and data copying. The fix has been verified agai

[JDK 9] RFR: 8041781: Need new regression tests for PBE keys

2014-06-18 Thread Rajan Halade
May I request you to review these 3 new tests to be added for PBE keys. New tests are added to address following: - seal/unseal works correctly with PBE algorithms - key wrapper works correctly with PBEKey - SecretKeyFactory.translateKey() method works JDK Issue: https://bugs.openjdk.java.net/b

RFR 8043406: Change default policy for JCE providers to run with as few privileges,as possible

2014-06-18 Thread Valerie Peng
Sean, Not sure if you can get to reviewing this before your vacation. If not, I will find someone else to help... Webrev: http://cr.openjdk.java.net/~valeriep/8043406/webrev.00/ Thanks, Valerie

RFR 8046046: Test sun/security/pkcs11/Signature/TestDSAKeyLength.java fails intermittently on Solaris 11 in 8u40 nightly

2014-06-18 Thread Valerie Peng
Tony, Can you please help reviewing this trivial fix? Changes are about overriding the SHA1withDSA signature upper limit to 1024 when larger DSA key size is supported. Webrev: http://cr.openjdk.java.net/~valeriep/8046046/webrev.00/ Thanks, Valerie

Re: RFR 8046046: Test sun/security/pkcs11/Signature/TestDSAKeyLength.java fails intermittently on Solaris 11 in 8u40 nightly

2014-06-18 Thread Anthony Scarpino
On 06/18/2014 04:04 PM, Valerie Peng wrote: Tony, Can you please help reviewing this trivial fix? Changes are about overriding the SHA1withDSA signature upper limit to 1024 when larger DSA key size is supported. Webrev: http://cr.openjdk.java.net/~valeriep/8046046/webrev.00/ Thanks, Valerie

Re: RFR 8027575: b113 causing a lot of memory allocation and regression for wls_webapp_atomics

2014-06-18 Thread Anthony Scarpino
The code change looks fine. Do you think this is worth a regression test? Since the in-place operation wasn't caught it sound like there might be no in-place tests Tony On 06/18/2014 02:53 PM, Valerie Peng wrote: Tony or Vinnie, either of you have time to review? Thanks, Valerie On 5/15/2

Re: RFR 8029994: Support "include" and "includedir" in krb5.conf

2014-06-18 Thread Wang Weijun
On Jun 19, 2014, at 0:17, Sean Mullan wrote: > Just a few comments on Config.java: > > 479 if (dups.contains(file)) { > 480 throw new IOException("Profile path included more than once"); > 481 } else { > 482 dups.add(file); > 483 } > > This could