7087021: TEST: com/sun/crypto/provider/Mac/MacClone.java failed on Solaris sparc 5.10
authorvinnie
Wed, 02 May 2012 14:50:46 +0100
changeset 12560 069c9358158b
parent 12559 9456ceada8b1
child 12561 63b05f2eabac
child 12668 9a70f2230e3b
7087021: TEST: com/sun/crypto/provider/Mac/MacClone.java failed on Solaris sparc 5.10 Reviewed-by: mullan
jdk/test/com/sun/crypto/provider/Mac/MacClone.java
--- a/jdk/test/com/sun/crypto/provider/Mac/MacClone.java	Tue May 01 19:45:34 2012 -0700
+++ b/jdk/test/com/sun/crypto/provider/Mac/MacClone.java	Wed May 02 14:50:46 2012 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2012, 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
@@ -23,7 +23,7 @@
 
 /*
  * @test
- * @bug 0000000
+ * @bug 7087021
  * @summary MacClone
  * @author Jan Luehe
  */
@@ -56,7 +56,7 @@
         KeyGenerator kgen = KeyGenerator.getInstance("DES");
         SecretKey skey = kgen.generateKey();
 
-        mac = Mac.getInstance("HmacSHA1");
+        mac = Mac.getInstance("HmacSHA1", "SunJCE");
         mac.init(skey);
         macClone = (Mac)mac.clone();
         System.out.println(macClone.getProvider().toString());