6643094: Test on keytool -startdate forgets about December
authorweijun
Sat, 08 Mar 2008 22:51:14 +0800
changeset 91 2f9e71bc1bac
parent 90 12ba8f0d1494
child 92 b0bdf21d1a53
6643094: Test on keytool -startdate forgets about December Reviewed-by: xuelei
jdk/test/sun/security/tools/keytool/StartDateTest.java
--- a/jdk/test/sun/security/tools/keytool/StartDateTest.java	Sat Mar 08 22:49:45 2008 +0800
+++ b/jdk/test/sun/security/tools/keytool/StartDateTest.java	Sat Mar 08 22:51:14 2008 +0800
@@ -52,15 +52,15 @@
         cal.setTime(getIssueDate());
         System.out.println(cal);
         if (cal.get(Calendar.YEAR) != year + 1) {
-            throw new Exception("Function #1 check fails");
+            throw new Exception("Function check #1 fails");
         }
 
         run("-keystore jks -storetype jks -storepass changeit -keypass changeit -alias me " +
                 "-selfcert -startdate +1m");
         cal.setTime(getIssueDate());
         System.out.println(cal);
-        if (cal.get(Calendar.MONTH) != month + 1) {
-            throw new Exception("Function #1 check fails");
+        if (cal.get(Calendar.MONTH) != (month + 1) % 12) {
+            throw new Exception("Function check #2 fails");
         }
 
         new File("jks").delete();