mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			527 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			527 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
 | 
						|
# SPDX-License-Identifier: CC0-1.0
 | 
						|
 | 
						|
import os
 | 
						|
 | 
						|
import pytest
 | 
						|
from pytest_embedded import Dut
 | 
						|
 | 
						|
 | 
						|
@pytest.mark.supported_targets
 | 
						|
@pytest.mark.generic
 | 
						|
def test_crypto(dut: Dut) -> None:
 | 
						|
    # if the env variable IDF_FPGA_ENV is set, we would need a longer timeout
 | 
						|
    # as tests for efuses burning security peripherals would be run
 | 
						|
    timeout = 600 if os.environ.get('IDF_ENV_FPGA') else 60
 | 
						|
 | 
						|
    dut.expect('main_task: Returned from app_main()', timeout=timeout)
 |