summaryrefslogtreecommitdiff
path: root/src/test/test-date.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-11-23 22:20:15 +0100
committerLennart Poettering <lennart@poettering.net>2012-11-23 22:20:15 +0100
commitdecad9103eab4c5f24dbc55dc7d2cdabce87a302 (patch)
treef11788b4d9ddb44b51dc39dcabdd15fe05fb37d4 /src/test/test-date.c
parentbbb8486e1709ee297a1eb803f88041e1da1fa436 (diff)
util: teach parse_timestamp() to parse results of format_timestamp_relative()
Diffstat (limited to 'src/test/test-date.c')
-rw-r--r--src/test/test-date.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test-date.c b/src/test/test-date.c
index 57f8b371d3..7e14d196c6 100644
--- a/src/test/test-date.c
+++ b/src/test/test-date.c
@@ -65,5 +65,8 @@ int main(int argc, char *argv[]) {
assert_se(parse_timestamp("+2y 4d", &t) >= 0);
log_info("%s", format_timestamp(buf, sizeof(buf), t));
+ assert_se(parse_timestamp("5months ago", &t) >= 0);
+ log_info("%s", format_timestamp(buf, sizeof(buf), t));
+
return 0;
}