aboutsummaryrefslogtreecommitdiff
path: root/tests/qtest/ipmi-kcs-test.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2021-05-03 17:55:25 +0100
committerThomas Huth <thuth@redhat.com>2021-05-14 12:28:01 +0200
commitbfaa3b05a9af6acd011e772fa42eff5d05424a35 (patch)
treebabd43bf1e0b4568663047d7af42807c647b0099 /tests/qtest/ipmi-kcs-test.c
parent6c054176dba1c3669f7dbf0f3b6bf9e7245a0dfe (diff)
tests: Avoid side effects inside g_assert() arguments
For us, assertions are always enabled, but side-effect expressions inside the argument to g_assert() are bad style anyway. Fix three occurrences in IPMI related tests, which will silence some Coverity nits. Fixes: CID 1432322, CID 1432287, CID 1432291 Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210503165525.26221-4-peter.maydell@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/ipmi-kcs-test.c')
-rw-r--r--tests/qtest/ipmi-kcs-test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qtest/ipmi-kcs-test.c b/tests/qtest/ipmi-kcs-test.c
index fc0a918c8d..afc24dd3e4 100644
--- a/tests/qtest/ipmi-kcs-test.c
+++ b/tests/qtest/ipmi-kcs-test.c
@@ -73,7 +73,8 @@ static void kcs_wait_ibf(void)
{
unsigned int count = 1000;
while (IPMI_KCS_CMDREG_GET_IBF() != 0) {
- g_assert(--count != 0);
+ --count;
+ g_assert(count != 0);
}
}