2017-08-28 17:20:38 +02:00
|
|
|
import frrtest
|
|
|
|
import pytest
|
|
|
|
import os
|
|
|
|
|
2020-10-07 23:22:26 +02:00
|
|
|
|
2017-08-28 17:20:38 +02:00
|
|
|
class TestZMQ(frrtest.TestRefOut):
|
2020-10-07 23:22:26 +02:00
|
|
|
program = "./test_zmq"
|
2017-08-28 17:20:38 +02:00
|
|
|
|
2020-10-07 23:22:26 +02:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
'S["ZEROMQ_TRUE"]=""\n' not in open("../config.status").readlines(),
|
|
|
|
reason="ZEROMQ not enabled",
|
|
|
|
)
|
2017-08-28 17:20:38 +02:00
|
|
|
def test_refout(self):
|
|
|
|
return super(TestZMQ, self).test_refout()
|