s3-pdbtest: show mis-matching times
authorAndrew Bartlett <abartlet@samba.org>
Tue, 26 Jun 2012 23:04:46 +0000 (09:04 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 27 Jun 2012 09:29:16 +0000 (11:29 +0200)
source3/torture/pdbtest.c

index 14e28e98b751ca302ed5c3841f2ee0a67a2e69da..aad66bc0c85d524f249c96bbdd78988fc88deff7 100644 (file)
@@ -128,13 +128,17 @@ static bool samu_correct(struct samu *s1, struct samu *s2)
 
        /* Check logoff time */
        if (pdb_get_logoff_time(s1) != pdb_get_logoff_time(s2)) {
-               DEBUG(0, ("Logoff time is not written correctly\n"));
+               DEBUG(0, ("Logoff time is not written correctly: %s vs %s \n",
+                         http_timestring(talloc_tos(), pdb_get_logoff_time(s1)),
+                         http_timestring(talloc_tos(), pdb_get_logoff_time(s2))));
                ret = False;
        }
 
        /* Check kickoff time */
        if (pdb_get_kickoff_time(s1) != pdb_get_kickoff_time(s2)) {
-               DEBUG(0, ("Kickoff time is not written correctly\n"));
+               DEBUG(0, ("Kickoff time is not written correctly: %s vs %s \n",
+                         http_timestring(talloc_tos(), pdb_get_kickoff_time(s1)),
+                         http_timestring(talloc_tos(), pdb_get_kickoff_time(s2))));
                ret = False;
        }
 
@@ -146,13 +150,17 @@ static bool samu_correct(struct samu *s1, struct samu *s2)
 
        /* Check password last set time */
        if (pdb_get_pass_last_set_time(s1) != pdb_get_pass_last_set_time(s2)) {
-               DEBUG(0, ("Password last set time is not written correctly\n"));
+               DEBUG(0, ("Password last set time is not written correctly: %s vs %s \n",
+                         http_timestring(talloc_tos(), pdb_get_pass_last_set_time(s1)),
+                         http_timestring(talloc_tos(), pdb_get_pass_last_set_time(s2))));
                ret = False;
        }
 
        /* Check password can change time */
        if (pdb_get_pass_can_change_time(s1) != pdb_get_pass_can_change_time(s2)) {
-               DEBUG(0, ("Password can change time is not written correctly\n"));
+               DEBUG(0, ("Password can change time is not written correctly %s vs %s \n",
+                         http_timestring(talloc_tos(), pdb_get_pass_can_change_time(s1)),
+                         http_timestring(talloc_tos(), pdb_get_pass_can_change_time(s2))));
                ret = False;
        }