twister: fix testcase parsing from binary
We have been clearning the list of testcases in every iteration over the symbols ending up with only one testcase in the instance. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
36f4226b2f
commit
729a795aef
|
@ -677,6 +677,8 @@ class ProjectBuilder(FilterBuilder):
|
|||
new_ztest_unit_test_regex = re.compile(r"z_ztest_unit_test__([^\s]*)__([^\s]*)")
|
||||
for section in elf.iter_sections():
|
||||
if isinstance(section, SymbolTableSection):
|
||||
self.instance.testcases.clear()
|
||||
self.instance.testsuite.testcases.clear()
|
||||
for sym in section.iter_symbols():
|
||||
# It is only meant for new ztest fx because only new ztest fx exposes test functions
|
||||
# precisely.
|
||||
|
@ -685,9 +687,6 @@ class ProjectBuilder(FilterBuilder):
|
|||
# The 2nd capture group is new ztest unit test name.
|
||||
matches = new_ztest_unit_test_regex.findall(sym.name)
|
||||
if matches:
|
||||
# this is new ztest fx
|
||||
self.instance.testcases.clear()
|
||||
self.instance.testsuite.testcases.clear()
|
||||
for m in matches:
|
||||
# new_ztest_suite = m[0] # not used for now
|
||||
test_func_name = m[1].replace("test_", "")
|
||||
|
@ -698,7 +697,6 @@ class ProjectBuilder(FilterBuilder):
|
|||
self.instance.add_testcase(name=testcase_id)
|
||||
self.instance.testsuite.add_testcase(name=testcase_id)
|
||||
|
||||
|
||||
def cleanup_artifacts(self, additional_keep=[]):
|
||||
logger.debug("Cleaning up {}".format(self.instance.build_dir))
|
||||
allow = [
|
||||
|
|
Loading…
Reference in a new issue