Merge branch 'test/add_case_to_detect_ds2ds_issue_v3.2' into 'release/v3.2'

test: add case to detect ds2ds issue (backport v3.2)

See merge request idf/esp-idf!3851
This commit is contained in:
Jiang Jiang Jian
2018-12-13 14:52:58 +08:00
4 changed files with 100 additions and 2 deletions

View File

@@ -530,7 +530,7 @@ class BaseDUT(object):
data = BaseDUT.u_to_bytearray(data)
match = pattern.search(data)
if match:
ret = tuple(x.decode() for x in match.groups())
ret = tuple(None if x is None else x.decode() for x in match.groups())
index = match.end()
else:
index = -1

View File

@@ -45,7 +45,7 @@ EXCEPTION_PATTERN = re.compile(r"(Guru Meditation Error: Core\s+\d panic'ed \([\
ABORT_PATTERN = re.compile(r"(abort\(\) was called at PC 0x[a-fA-F\d]{8} on core \d)")
FINISH_PATTERN = re.compile(r"1 Tests (\d) Failures (\d) Ignored")
END_LIST_STR = r'\r?\nEnter test for running'
TEST_PATTERN = re.compile(r'\((\d+)\)\s+"([^"]+)" ([^\r]+)\r?\n(' + END_LIST_STR + r')?')
TEST_PATTERN = re.compile(r'\((\d+)\)\s+"([^"]+)" ([^\r\n]+)\r?\n(' + END_LIST_STR + r')?')
TEST_SUBMENU_PATTERN = re.compile(r'\s+\((\d+)\)\s+"[^"]+"\r?\n(?=(?=\()|(' + END_LIST_STR + r'))')
SIMPLE_TEST_ID = 0