]> git.proxmox.com Git - mirror_frr.git/blob - tests/lib/test_typelist.py
Merge pull request #5854 from qlyoung/fix-zapi-ipset-entry-bad-family
[mirror_frr.git] / tests / lib / test_typelist.py
1 import frrtest
2
3 class TestTypelist(frrtest.TestMultiOut):
4 program = './test_typelist'
5
6 TestTypelist.onesimple('LIST end')
7 TestTypelist.onesimple('DLIST end')
8 TestTypelist.onesimple('ATOMLIST end')
9 TestTypelist.onesimple('HEAP end')
10 TestTypelist.onesimple('SORTLIST_UNIQ end')
11 TestTypelist.onesimple('SORTLIST_NONUNIQ end')
12 TestTypelist.onesimple('HASH end')
13 TestTypelist.onesimple('HASH_collisions end')
14 TestTypelist.onesimple('SKIPLIST_UNIQ end')
15 TestTypelist.onesimple('SKIPLIST_NONUNIQ end')
16 TestTypelist.onesimple('RBTREE_UNIQ end')
17 TestTypelist.onesimple('RBTREE_NONUNIQ end')
18 TestTypelist.onesimple('ATOMSORT_UNIQ end')
19 TestTypelist.onesimple('ATOMSORT_NONUNIQ end')