mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
tests/qtest/cmsdk-apb-watchdog-test: Don't abort on assertion failure
Currently the watchdog test has a behavior in which the first test assertion that fails will make the test abort making it impossible to see the result of other tests: # ERROR:../tests/qtest/cmsdk-apb-watchdog-test.c:87:test_watchdog: assertion failed ... Bail out! Aborted Changing the behavior in order to let the test finish other tests and report the ones that pass and fail: # ERROR:../tests/qtest/cmsdk-apb-watchdog-test.c:101:test_watchdog: assertion failed ... not ok 1 /arm/cmsdk-apb-watchdog/watchdog Signed-off-by: Roque Arcudia Hernandez <roqueh@google.com> Message-id: 20241115160328.1650269-5-roqueh@google.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
583c988415
commit
9a0762c132
1 changed files with 1 additions and 0 deletions
|
@ -164,6 +164,7 @@ int main(int argc, char **argv)
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
g_test_init(&argc, &argv, NULL);
|
g_test_init(&argc, &argv, NULL);
|
||||||
|
g_test_set_nonfatal_assertions();
|
||||||
|
|
||||||
if (qtest_has_machine(machine_info[MACHINE_LM3S811EVB].machine)) {
|
if (qtest_has_machine(machine_info[MACHINE_LM3S811EVB].machine)) {
|
||||||
qtest_add_data_func("/cmsdk-apb-watchdog/watchdog",
|
qtest_add_data_func("/cmsdk-apb-watchdog/watchdog",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue