tests: Break monolithic classifier test into subtests.
[sliver-openvswitch.git] / tests / classifier.at
diff --git a/tests/classifier.at b/tests/classifier.at
new file mode 100644 (file)
index 0000000..f9e6953
--- /dev/null
@@ -0,0 +1,16 @@
+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])])