]> code.ossystems Code Review - openembedded-core.git/commit
logrotate.py: fix testimage occasionally failure
authorChangqing Li <changqing.li@windriver.com>
Fri, 3 Jul 2020 05:47:59 +0000 (13:47 +0800)
committerSteve Sakoman <steve@sakoman.com>
Tue, 7 Jul 2020 00:33:20 +0000 (14:33 -1000)
commit198fe0d64e4bdeda84c0f3e44afcc1d99ca9dbbe
tree351cdc27f8dc9239a24d9a4a1c36f68c2d4d59ac
parentfa2cca514f4b03aeeedb14dbffd26bc98ed74d29
logrotate.py: fix testimage occasionally failure

testcase test_systemd_failed occasionally failed with below error:
Failed to start Rotate log files.
logrotate.service: Failed with result 'exit-code'.
logrotate.service: Main process exited, code=exited, status=1/FAILURE
error: stat of /var/log/logrotate_test failed: No such file or directory
error: logrotate_test:1 lines must begin with a keyword or a filename (possibly in double quotes)

above failure caused since testcase test_logrotate_wtmp
add /etc/logrotate.d/logrotate_test, which need /var/log/logrotate_test,
but there is no such file. so when logrotate.service is triggerd
by logrotate.timer after testcase test_logrotate_wtmp is runned,
the testcase test_systemd_failed will fail.

these 3 lines are useless, so remove them to fix above problem.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 22f5f7f86a4d47624c476be00e5121009c48cb7b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/runtime/cases/logrotate.py