]> git.proxmox.com Git - mirror_frr.git/blob - tests/lib/test_frrlua.py
Merge pull request #9164 from pguibert6WIND/flowspec_vrflite_shortcut
[mirror_frr.git] / tests / lib / test_frrlua.py
1 import frrtest
2 import pytest
3
4 if 'S["SCRIPTING_TRUE"]=""\n' not in open("../config.status").readlines():
5 class TestFrrlua:
6 @pytest.mark.skipif(True, reason="Test unsupported")
7 def test_exit_cleanly(self):
8 pass
9 else:
10
11 class TestFrrlua(frrtest.TestMultiOut):
12 program = "./test_frrlua"
13
14 TestFrrlua.exit_cleanly()