From: Jelmer Vernooij Date: Thu, 8 Jan 2009 11:45:57 +0000 (+0100) Subject: Print the failed value in the time tests. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=078879735be86c9e9f9be77a6d1cda3d0f9374a3;p=metze%2Fsamba%2Fwip.git Print the failed value in the time tests. --- diff --git a/lib/util/tests/time.c b/lib/util/tests/time.c index e24c5fe5ef50..b7cb60861111 100644 --- a/lib/util/tests/time.c +++ b/lib/util/tests/time.c @@ -43,18 +43,21 @@ static bool test_null_nttime(struct torture_context *tctx) static bool test_http_timestring(struct torture_context *tctx) { const char *start = "Thu, 01 Jan 1970"; - torture_assert(tctx, !strncmp(start, http_timestring(tctx, 42), - strlen(start)), "42"); + char *result; + result = http_timestring(tctx, 42); + torture_assert(tctx, !strncmp(start, result, + strlen(start)), result); torture_assert_str_equal(tctx, "never", - http_timestring(tctx, get_time_t_max()), "42"); + http_timestring(tctx, get_time_t_max()), "42"); return true; } static bool test_timestring(struct torture_context *tctx) { const char *start = "Thu Jan 1"; - torture_assert(tctx, !strncmp(start, timestring(tctx, 42), strlen(start)), - "42"); + char *result = timestring(tctx, 42); + torture_assert(tctx, !strncmp(start, result, strlen(start)), + result); return true; }