]> git.proxmox.com Git - mirror_frr.git/blob - tests/lib/test_typelist.py
Merge pull request #9050 from LabNConsulting/chopps/reset-parallel
[mirror_frr.git] / tests / lib / test_typelist.py
1 import frrtest
2
3
4 class TestTypelist(frrtest.TestMultiOut):
5 program = "./test_typelist"
6
7
8 TestTypelist.onesimple("LIST end")
9 TestTypelist.onesimple("DLIST end")
10 TestTypelist.onesimple("ATOMLIST end")
11 TestTypelist.onesimple("HEAP end")
12 TestTypelist.onesimple("SORTLIST_UNIQ end")
13 TestTypelist.onesimple("SORTLIST_NONUNIQ end")
14 TestTypelist.onesimple("HASH end")
15 TestTypelist.onesimple("HASH_collisions end")
16 TestTypelist.onesimple("SKIPLIST_UNIQ end")
17 TestTypelist.onesimple("SKIPLIST_NONUNIQ end")
18 TestTypelist.onesimple("RBTREE_UNIQ end")
19 TestTypelist.onesimple("RBTREE_NONUNIQ end")
20 TestTypelist.onesimple("ATOMSORT_UNIQ end")
21 TestTypelist.onesimple("ATOMSORT_NONUNIQ end")