2021-06-20 00:42:12 +02:00
|
|
|
import frrtest
|
2021-06-22 18:31:02 +02:00
|
|
|
import pytest
|
2021-06-20 00:42:12 +02:00
|
|
|
|
2021-06-22 18:31:02 +02:00
|
|
|
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:
|
2021-06-20 00:42:12 +02:00
|
|
|
|
2021-06-22 18:31:02 +02:00
|
|
|
class TestFrrlua(frrtest.TestMultiOut):
|
|
|
|
program = "./test_frrlua"
|
2021-06-20 00:42:12 +02:00
|
|
|
|
2021-06-22 18:31:02 +02:00
|
|
|
TestFrrlua.exit_cleanly()
|