mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	This is to address frequent CI test failure where test most likely timeouts during SPIFFS formatting operation.
		
			
				
	
	
		
			24 lines
		
	
	
		
			744 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			744 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import re
 | 
						|
 | 
						|
import ttfw_idf
 | 
						|
 | 
						|
 | 
						|
@ttfw_idf.idf_example_test(env_tag='Example_GENERIC', target=['esp32', 'esp32c3'])
 | 
						|
def test_examples_spiffs(env, extra_data):
 | 
						|
 | 
						|
    dut = env.get_dut('spiffs', 'examples/storage/spiffs')
 | 
						|
    dut.start_app()
 | 
						|
    dut.expect_all('example: Initializing SPIFFS',
 | 
						|
                   re.compile(r'example: Partition size: total: \d+, used: \d+'),
 | 
						|
                   'example: Opening file',
 | 
						|
                   'example: File written',
 | 
						|
                   'example: Renaming file',
 | 
						|
                   'example: Reading file',
 | 
						|
                   'example: Read from file: \'Hello World!\'',
 | 
						|
                   'example: SPIFFS unmounted',
 | 
						|
                   timeout=60)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    test_examples_spiffs()
 |