mirror of
https://github.com/openvswitch/ovs
synced 2025-10-19 14:37:21 +00:00
The old classifier was not adaptive: it required knowing the structure of the flows that were likely to be in use to get good performance. It is likely that it degenerated to linear search in any real-world case. This new classifier is adaptive and should perform better in the real world.
15 lines
398 B
Plaintext
15 lines
398 B
Plaintext
AT_BANNER([flow classifier unit tests])
|
|
m4_foreach(
|
|
[testname],
|
|
[[empty],
|
|
[destroy-null],
|
|
[single-rule],
|
|
[rule-replacement],
|
|
[many-rules-in-one-list],
|
|
[many-rules-in-one-table],
|
|
[many-rules-in-two-tables],
|
|
[many-rules-in-five-tables]],
|
|
[AT_SETUP([flow classifier - m4_bpatsubst(testname, [-], [ ])])
|
|
AT_CHECK([test-classifier testname], [0], [], [])
|
|
AT_CLEANUP])])
|