Add some debugging when test_hashtab_thrash fails
authorMatthew Jordan <mjordan@digium.com>
Sat, 10 Aug 2013 19:45:31 +0000 (19:45 +0000)
committerMatthew Jordan <mjordan@digium.com>
Sat, 10 Aug 2013 19:45:31 +0000 (19:45 +0000)
Disabling DEBUG_THREADS caused this test to fail on the 32-bit build agent.
Adding some debugging to see why it thinks the test is timing out.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396528 65c4cc65-6c06-0410-ace0-fbb531ad65f3

tests/test_hashtab_thrash.c

index 373922b..3c5d061 100644 (file)
@@ -61,7 +61,14 @@ struct hash_test {
 };
 
 static int is_timed_out(struct hash_test const *data) {
-       return ast_tvdiff_us(data->deadline, ast_tvnow()) < 0;
+       struct timeval now = ast_tvnow();
+       int val = ast_tvdiff_us(data->deadline, now) < 0;
+       if (val) {
+               printf("Now: %ld.%06ld Deadline: %ld.%06ld\n",
+                       now.tv_sec, now.tv_usec,
+                       data->deadline.tv_sec, data->deadline.tv_usec);
+       }
+       return val;
 }
 
 /*! /brief Create test element */