blob: 2f6ddc1c07db676839e9bf5f12acf140993513b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import frrtest
import pytest
if 'S["SCRIPTING_TRUE"]=""\n' not in open("../config.status").readlines():
class TestFrrlua:
@pytest.mark.skipif(True, reason="Test unsupported")
def test_exit_cleanly(self):
pass
else:
class TestFrrlua(frrtest.TestMultiOut):
program = "./test_frrlua"
TestFrrlua.exit_cleanly()
|