summaryrefslogtreecommitdiff
path: root/src/test/test-date.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-05-17 05:40:49 -0400
committerLennart Poettering <lennart@poettering.net>2017-05-17 11:40:49 +0200
commitd80e5b74e82fb4403dfa1be9d0eb7cb121e9181b (patch)
treeae5ab9759f99ad47b0dd39ec3f737d6603577c0b /src/test/test-date.c
parenta8b7e8a742374a1724a1e986be8eba96bb833f10 (diff)
downloadsystemd-d80e5b74e82fb4403dfa1be9d0eb7cb121e9181b.tar.gz
calendarspec: parse unix timestamps (@...) (#5947)
Fixes #5810.
Diffstat (limited to 'src/test/test-date.c')
-rw-r--r--src/test/test-date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-date.c b/src/test/test-date.c
index b77598c81d..a952f779dc 100644
--- a/src/test/test-date.c
+++ b/src/test/test-date.c
@@ -29,7 +29,7 @@ static void test_should_pass(const char *p) {
assert_se(parse_timestamp(p, &t) >= 0);
format_timestamp_us(buf, sizeof(buf), t);
- log_info("%s", buf);
+ log_info("\"%s\" → \"%s\"", p, buf);
/* Chop off timezone */
sp = strrchr(buf, ' ');