mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 09:01:40 +01:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
		
			549 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			549 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from __future__ import unicode_literals
							 | 
						||
| 
								 | 
							
								import ttfw_idf
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@ttfw_idf.idf_example_test(env_tag='Example_WIFI')
							 | 
						||
| 
								 | 
							
								def test_examples_perfmon(env, extra_data):
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    dut = env.get_dut('perfmon', 'examples/system/perfmon')
							 | 
						||
| 
								 | 
							
								    dut.start_app()
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    dut.expect_all('example: Start',
							 | 
						||
| 
								 | 
							
								                   'example: Start test with printing all available statistic',
							 | 
						||
| 
								 | 
							
								                   'example: Start test with user defined statistic',
							 | 
						||
| 
								 | 
							
								                   'example: The End',
							 | 
						||
| 
								 | 
							
								                   timeout=60)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if __name__ == '__main__':
							 | 
						||
| 
								 | 
							
								    test_examples_perfmon()
							 |