gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 87/208: unit1399: add logging to time comparison


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 87/208: unit1399: add logging to time comparison
Date: Wed, 09 Aug 2017 17:34:44 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.55.0
in repository gnurl.

commit 8d2b1de284dd1e84e9c68a1a2a75aefaf7bf7826
Author: Daniel Stenberg <address@hidden>
AuthorDate: Sat Jul 1 16:40:51 2017 +0200

    unit1399: add logging to time comparison
    
    ... to enable tracking down why autobuilds fail on this
    
    Bug: #1616
---
 tests/unit/unit1399.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/unit/unit1399.c b/tests/unit/unit1399.c
index 1befc8aaf..b733c8fd8 100644
--- a/tests/unit/unit1399.c
+++ b/tests/unit/unit1399.c
@@ -39,7 +39,11 @@ static void unit_stop(void)
 static bool usec_matches_seconds(time_t time_usec, int expected_seconds)
 {
   int time_sec = (int)(time_usec / usec_magnitude);
-  return time_sec == expected_seconds;
+  bool same = (time_sec == expected_seconds);
+  fprintf(stderr, "is %d us same as %d seconds? %s\n",
+          (int)time_usec, expected_seconds,
+          same?"Yes":"No");
+  return same;
 }
 
 UNITTEST_START

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]