Skip to content

Commit ff5eef7

Browse files
committed
testing/esp: only apply run_all_cores workaround for p4
1 parent 4063764 commit ff5eef7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testing/esp/debug_backend_tests.py

+3
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,9 @@ def __init__(self, methodName='runTest'):
720720
self.args = []
721721

722722
def __init_subclass__(cls):
723+
# Only apply for esp32p4 to run tests also on cpu0, until single core tesets are enabled (OCD-1005)
724+
if testee_info.chip != "esp32p4":
725+
return
723726
for fname in dir(cls):
724727
f = getattr(cls, fname)
725728
if getattr(f, '_run_all_cores', False):

0 commit comments

Comments
 (0)