2017-05-08 13:02:55 +02:00
|
|
|
import frrtest
|
|
|
|
|
2017-08-31 22:45:01 +02:00
|
|
|
import pytest
|
|
|
|
import platform
|
2017-05-08 13:02:55 +02:00
|
|
|
|
2017-08-31 22:45:01 +02:00
|
|
|
if platform.uname()[0] == 'SunOS':
|
|
|
|
class TestFuzzIsisTLV:
|
|
|
|
@pytest.mark.skipif(True, reason='Test unsupported on SunOS')
|
|
|
|
def test_exit_cleanly(self):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
class TestFuzzIsisTLV(frrtest.TestMultiOut):
|
|
|
|
program = './test_fuzz_isis_tlv'
|
|
|
|
|
|
|
|
TestFuzzIsisTLV.exit_cleanly()
|