From d2aae6d53a79677b326e4f86b2cf4073d4eaf4ab Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Wed, 25 May 2022 10:30:29 +0800 Subject: [PATCH] fix: panic test case test_task_wdt --- tools/test_apps/system/panic/pytest_panic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test_apps/system/panic/pytest_panic.py b/tools/test_apps/system/panic/pytest_panic.py index a1813abdda..f53a59a1f1 100644 --- a/tools/test_apps/system/panic/pytest_panic.py +++ b/tools/test_apps/system/panic/pytest_panic.py @@ -50,7 +50,7 @@ def common_test(dut: PanicTestDut, config: str, expected_backtrace: Optional[Lis def test_task_wdt(dut: PanicTestDut, config: str, test_func_name: str) -> None: dut.expect_test_func_name(test_func_name) dut.expect_exact( - 'Task watchdog got triggered. The following tasks did not reset the watchdog in time:' + 'Task watchdog got triggered. The following tasks/users did not reset the watchdog in time:' ) dut.expect_exact('CPU 0: main') dut.expect(r'abort\(\) was called at PC [0-9xa-f]+ on core 0')