summaryrefslogtreecommitdiff
path: root/tests/lib/test_atomlist.py
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2016-11-08 18:11:20 +0100
committerDavid Lamparter <equinox@diac24.net>2019-04-27 19:33:39 +0200
commitbcea0c0fde0ae5f69aae7bd9d20f643075a14d06 (patch)
tree77edb292b04c620bb3249dfb720598d7572ea8bb /tests/lib/test_atomlist.py
parent80911bc26a44fd29eb311edbba7eb926d4eee1b8 (diff)
lib: atomlist & atomsort
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>
Diffstat (limited to 'tests/lib/test_atomlist.py')
-rw-r--r--tests/lib/test_atomlist.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/lib/test_atomlist.py b/tests/lib/test_atomlist.py
new file mode 100644
index 0000000000..293d47f316
--- /dev/null
+++ b/tests/lib/test_atomlist.py
@@ -0,0 +1,6 @@
+import frrtest
+
+class TestAtomlist(frrtest.TestMultiOut):
+ program = './test_atomlist'
+
+TestAtomlist.exit_cleanly()