diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-08 18:11:20 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-04-27 19:33:39 +0200 |
| commit | bcea0c0fde0ae5f69aae7bd9d20f643075a14d06 (patch) | |
| tree | 77edb292b04c620bb3249dfb720598d7572ea8bb /tests/lib/test_atomlist.py | |
| parent | 80911bc26a44fd29eb311edbba7eb926d4eee1b8 (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.py | 6 |
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() |
