@@ -53,15 +53,14 @@ def program_big_binary(self, actions, overflow=False):
5353 # we need to read written flash and compare data manually
5454 _ , fname2 = tempfile .mkstemp ()
5555 os .truncate (fname1 , size - truncate_size )
56- self .gdb .monitor_run ('flash read_bank 0 %s 0x%x %d' % (dbg .fixup_path (fname2 ), offset , size - truncate_size ), tmo = 120 )
56+ self .gdb .monitor_run ('flash read_bank 0 %s 0x%x %d' % (dbg .fixup_path (fname2 ), offset , size - truncate_size ), tmo = 180 )
5757
5858 # restore flash contents with test app as it was overwritten by test
5959 # what can lead to the failures when preparing for the next tests
6060 self .gdb .target_program_bins (self .test_app_cfg .build_bins_dir ())
6161
6262 self .assertTrue (filecmp .cmp (fname1 , fname2 ))
6363
64- @skip_for_chip (['esp32p4' ], 'skipped - OCD-1097' )
6564 def test_big_binary (self ):
6665 """
6766 This test checks flashing big binaries works.
@@ -73,7 +72,6 @@ def test_big_binary(self):
7372 """
7473 self .program_big_binary ('encrypt verify' if self .ENCRYPTED else 'verify' )
7574
76- @skip_for_chip (['esp32p4' ], 'skipped - OCD-1097' )
7775 def test_big_binary_compressed (self ):
7876 """
7977 This test checks flashing big compressed binaries works.
0 commit comments