Skip to content

Commit

Permalink
testing/esp: fix two_cores_concurrently_hit_bps for chips using dummy…
Browse files Browse the repository at this point in the history
… bps to fill hw slots
  • Loading branch information
sobuch committed Jan 7, 2025
1 parent 139adce commit 745268b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/esp/test_bp.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def two_cores_concurrently_hit_bps(self):
self.assertTrue(len(frames) > 0)
self.assertEqual(frames[0]['func'], cur_frame['func'])
self.assertEqual(frames[0]['line'], cur_frame['line'])
for cnt in hit_cnt[1:]:
for cnt in hit_cnt[-3:]:
self.assertTrue(cnt > 0)

def two_cores_concurrently_hit_wps(self):
Expand Down

0 comments on commit 745268b

Please sign in to comment.