diff options
author | Doug Christman <douglaschristman@gmail.com> | 2016-12-06 14:41:15 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-06 20:41:15 +0100 |
commit | c0df71fa36b5cacd682bf5748aabd21ca20d7807 (patch) | |
tree | 8a1b208f36c16f0aaa89cfdfbda1cc4b2f8e9e43 /src/test | |
parent | 9c77d1079dd905b90e488082a92764fcc14833e2 (diff) |
calendarspec: always interpret missing seconds as :00 (#4813)
"*:*" should be equivalent to "*-*-* *:*:00" (minutely)
rather than running every microsecond.
Fixes #4804
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-calendarspec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test-calendarspec.c b/src/test/test-calendarspec.c index b3d1160ea7..b8320b081b 100644 --- a/src/test/test-calendarspec.c +++ b/src/test/test-calendarspec.c @@ -186,6 +186,9 @@ int main(int argc, char* argv[]) { test_one("Monday *-*-*", "Mon *-*-* 00:00:00"); test_one("*-*-*", "*-*-* 00:00:00"); test_one("*:*:*", "*-*-* *:*:*"); + test_one("*:*", "*-*-* *:*:00"); + test_one("12:*", "*-*-* 12:*:00"); + test_one("*:30", "*-*-* *:30:00"); test_next("2016-03-27 03:17:00", "", 12345, 1459048620000000); test_next("2016-03-27 03:17:00", "CET", 12345, 1459041420000000); |