forked from Mirror/frr

These two are lock-free linked list implementations, the plain one is primarily intended for queues while the sorted one is for general data storage. Signed-off-by: David Lamparter <equinox@diac24.net>
7 lines
119 B
Python
7 lines
119 B
Python
import frrtest
|
|
|
|
class TestAtomlist(frrtest.TestMultiOut):
|
|
program = './test_atomlist'
|
|
|
|
TestAtomlist.exit_cleanly()
|