From 71bfef2ca9fdc674a6bb3baee2f948dc588fb9ae Mon Sep 17 00:00:00 2001 From: Steven Li Date: Tue, 2 Aug 2022 23:22:26 +0530 Subject: [PATCH] Responding to TD-17768, adding 0x2662 as alternative table-not-found error to be acceptable --- tests/pytest/crash_gen/crash_gen_main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/pytest/crash_gen/crash_gen_main.py b/tests/pytest/crash_gen/crash_gen_main.py index 7ab09383bf..2fa99230bc 100755 --- a/tests/pytest/crash_gen/crash_gen_main.py +++ b/tests/pytest/crash_gen/crash_gen_main.py @@ -1339,8 +1339,9 @@ class Task(): 0x03A1, # STable [does] not exist 0x03AA, # Tag already exists 0x0603, # Table already exists - 0x2603, # Table does not exist + 0x2603, # Table does not exist, replaced by 2662 below 0x260d, # Tags number not matched + 0x2662, # Table does not exist #TODO: what about 2603 above?