]> git.ipfire.org Git - thirdparty/systemd.git/commit
test: use full date & time when checking for coredumps
authorFrantisek Sumsal <frantisek@sumsal.cz>
Wed, 5 Jan 2022 11:06:52 +0000 (12:06 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 5 Jan 2022 16:18:12 +0000 (01:18 +0900)
commit1b51599f29d245f2214349498bf2c1f0aa36873f
tree874841de1dcf6551b3781c121c1b6204375225e3
parenta68f95a5dcd94dbc73c309fe303c45df82fe5d7d
test: use full date & time when checking for coredumps

Otherwise we might hit a window where the coredump happens before
midnight, but we check for it after midnight, which yields no results.

E.g.:

```
$ coredumpctl --no-legend --no-pager --file system.journal
Wed 2022-01-05 01:00:06 CET 359 0 0 SIGABRT journal /usr/bin/udevadm n/a
$ coredumpctl --since 23:59:55 --no-legend --no-pager --file system.journal
No coredumps found.
$ coredumpctl --since "2022-01-04 23:59:59" --no-legend --no-pager --file system.journal
Wed 2022-01-05 01:00:06 CET 359 0 0 SIGABRT journal /usr/bin/udevadm n/a
```
test/units/testsuite-17.03.sh