chiark / gitweb /
test-date: don't fail test if log_max_level is higher than LOG_INFO
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Tue, 30 Sep 2014 21:30:30 +0000 (23:30 +0200)
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Tue, 30 Sep 2014 21:40:40 +0000 (23:40 +0200)
src/test/test-date.c

index 0586b78b6d5e4d2a87fc92a04a1cbfb3ea5ee483..00b569080ccaa04809882b70af82e7e93197c6de 100644 (file)
@@ -28,7 +28,8 @@ static void test_one(const char *p) {
         char buf[FORMAT_TIMESTAMP_MAX], buf_relative[FORMAT_TIMESTAMP_RELATIVE_MAX];
 
         assert_se(parse_timestamp(p, &t) >= 0);
-        log_info("%s", format_timestamp(buf, sizeof(buf), t));
+        format_timestamp(buf, sizeof(buf), t);
+        log_info("%s", buf);
 
         /* Chop off timezone */
         *strrchr(buf, ' ') = 0;
@@ -36,7 +37,8 @@ static void test_one(const char *p) {
         assert_se(parse_timestamp(buf, &q) >= 0);
         assert_se(q == t);
 
-        log_info("%s", strna(format_timestamp_relative(buf_relative, sizeof(buf_relative), t)));
+        format_timestamp_relative(buf_relative, sizeof(buf_relative), t);
+        log_info("%s", strna(buf_relative));
         assert_se(parse_timestamp(buf, &q) >= 0);
 }