mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 03:29:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			370 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			370 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import frrtest
 | 
						|
import pytest
 | 
						|
 | 
						|
if 'S["SCRIPTING_TRUE"]=""\n' not in open("../config.status").readlines():
 | 
						|
    class TestFrrscript:
 | 
						|
        @pytest.mark.skipif(True, reason="Test unsupported")
 | 
						|
        def test_exit_cleanly(self):
 | 
						|
            pass
 | 
						|
else:
 | 
						|
 | 
						|
    class TestFrrscript(frrtest.TestMultiOut):
 | 
						|
        program = "./test_frrscript"
 | 
						|
 | 
						|
    TestFrrscript.exit_cleanly()
 |