mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 03:28:31 +00:00
tests: skip isis tlv fuzztest on SunOS
This commit is contained in:
parent
ff228d2948
commit
0fb07d51c0
@ -880,6 +880,7 @@ case "$host_os" in
|
|||||||
AC_DEFINE(KAME,1,KAME IPv6)
|
AC_DEFINE(KAME,1,KAME IPv6)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
AM_CONDITIONAL(SOLARIS, test "${SOLARIS}" = "solaris")
|
||||||
|
|
||||||
AC_SYS_LARGEFILE
|
AC_SYS_LARGEFILE
|
||||||
|
|
||||||
|
@ -25,8 +25,12 @@ TESTS_BGPD =
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if ISISD
|
if ISISD
|
||||||
|
if SOLARIS
|
||||||
|
TESTS_ISISD =
|
||||||
|
else
|
||||||
TESTS_ISISD = \
|
TESTS_ISISD = \
|
||||||
isisd/test_fuzz_isis_tlv
|
isisd/test_fuzz_isis_tlv
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
TESTS_ISISD =
|
TESTS_ISISD =
|
||||||
endif
|
endif
|
||||||
|
@ -1,5 +1,14 @@
|
|||||||
import frrtest
|
import frrtest
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
import platform
|
||||||
|
|
||||||
|
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):
|
class TestFuzzIsisTLV(frrtest.TestMultiOut):
|
||||||
program = './test_fuzz_isis_tlv'
|
program = './test_fuzz_isis_tlv'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user