mirror of
https://github.com/openvswitch/ovs
synced 2025-10-25 15:07:05 +00:00
This makes it easier to see which tests are taking up a lot of time, and to see which ones actually fail if any of them do.
17 lines
469 B
Plaintext
17 lines
469 B
Plaintext
AT_BANNER([flow classifier unit tests])
|
|
m4_foreach(
|
|
[testname],
|
|
[[empty],
|
|
[destroy-null],
|
|
[single-rule],
|
|
[rule-replacement],
|
|
[two-rules-in-one-bucket],
|
|
[two-rules-in-one-table],
|
|
[two-rules-in-different-tables],
|
|
[many-rules-in-one-bucket],
|
|
[many-rules-in-one-table],
|
|
[many-rules-in-different-tables]],
|
|
[AT_SETUP([flow classifier - m4_bpatsubst(testname, [-], [ ])])
|
|
AT_CHECK([test-classifier testname], [0], [], [])
|
|
AT_CLEANUP])])
|