summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Warren <ben@skyportsystems.com>2016-03-25 14:10:24 -0700
committerBen Pfaff <blp@ovn.org>2016-03-30 13:10:18 -0700
commit64c967795b26c3ed1cd09899ca62d95373f2e2d7 (patch)
tree4a43b1edc5a73dbf390e9e19a415f95093fbb4a6 /tests
parent7888d2a6cdc77a45b4247db322df64fe9211a1bb (diff)
downloadopenvswitch-64c967795b26c3ed1cd09899ca62d95373f2e2d7.tar.gz
Move lib/ofpbuf.h to include/openvswitch directory
Signed-off-by: Ben Warren <ben@skyportsystems.com> Acked-by: Ryan Moats <rmoats@us.ibm.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/test-bundle.c2
-rw-r--r--tests/test-flows.c2
-rw-r--r--tests/test-netflow.c2
-rw-r--r--tests/test-odp.c2
-rw-r--r--tests/test-ofpbuf.c2
-rw-r--r--tests/test-ovn.c2
-rw-r--r--tests/test-rstp.c2
-rw-r--r--tests/test-sflow.c2
-rw-r--r--tests/test-stp.c2
-rw-r--r--tests/test-vconn.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/tests/test-bundle.c b/tests/test-bundle.c
index 4f6eb0c1f..d19c23a4a 100644
--- a/tests/test-bundle.c
+++ b/tests/test-bundle.c
@@ -20,7 +20,7 @@
#include <stdlib.h>
#include "flow.h"
#include "ofp-actions.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "util.h"
diff --git a/tests/test-flows.c b/tests/test-flows.c
index 0e8b148bf..89c7ac0be 100644
--- a/tests/test-flows.c
+++ b/tests/test-flows.c
@@ -22,7 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include "classifier.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ofp-print.h"
#include "ofp-util.h"
#include "openflow/openflow.h"
diff --git a/tests/test-netflow.c b/tests/test-netflow.c
index fa0920e2d..6d199ba30 100644
--- a/tests/test-netflow.c
+++ b/tests/test-netflow.c
@@ -25,7 +25,7 @@
#include "command-line.h"
#include "daemon.h"
#include "openvswitch/dynamic-string.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "packets.h"
#include "poll-loop.h"
diff --git a/tests/test-odp.c b/tests/test-odp.c
index 9a2e520da..b1e20c3e9 100644
--- a/tests/test-odp.c
+++ b/tests/test-odp.c
@@ -21,7 +21,7 @@
#include "openvswitch/dynamic-string.h"
#include "flow.h"
#include "match.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "util.h"
#include "openvswitch/ofp-parse.h"
diff --git a/tests/test-ofpbuf.c b/tests/test-ofpbuf.c
index d88fefef5..3d7fab90f 100644
--- a/tests/test-ofpbuf.c
+++ b/tests/test-ofpbuf.c
@@ -17,7 +17,7 @@
#include <config.h>
#undef NDEBUG
#include <stdio.h>
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "util.h"
diff --git a/tests/test-ovn.c b/tests/test-ovn.c
index 19a19ed2f..92906922c 100644
--- a/tests/test-ovn.c
+++ b/tests/test-ovn.c
@@ -23,7 +23,7 @@
#include "fatal-signal.h"
#include "match.h"
#include "ofp-actions.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovn/lib/actions.h"
#include "ovn/lib/expr.h"
#include "ovn/lib/lex.h"
diff --git a/tests/test-rstp.c b/tests/test-rstp.c
index 3eca15c0b..2ee8c7ea0 100644
--- a/tests/test-rstp.c
+++ b/tests/test-rstp.c
@@ -7,7 +7,7 @@
#include <inttypes.h>
#include <stdarg.h>
#include <stdlib.h>
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "dp-packet.h"
#include "packets.h"
diff --git a/tests/test-sflow.c b/tests/test-sflow.c
index aa003fd64..60870dff0 100644
--- a/tests/test-sflow.c
+++ b/tests/test-sflow.c
@@ -28,7 +28,7 @@
#include "command-line.h"
#include "daemon.h"
#include "openvswitch/dynamic-string.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "packets.h"
#include "poll-loop.h"
diff --git a/tests/test-stp.c b/tests/test-stp.c
index ce3b689b8..c072108c7 100644
--- a/tests/test-stp.c
+++ b/tests/test-stp.c
@@ -24,7 +24,7 @@
#include <stdarg.h>
#include <stdlib.h>
#include "dp-packet.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "ovstest.h"
#include "packets.h"
#include "openvswitch/vlog.h"
diff --git a/tests/test-vconn.c b/tests/test-vconn.c
index 17f4c1a38..2dbffff9b 100644
--- a/tests/test-vconn.c
+++ b/tests/test-vconn.c
@@ -27,7 +27,7 @@
#include "fatal-signal.h"
#include "ofp-msgs.h"
#include "ofp-util.h"
-#include "ofpbuf.h"
+#include "openvswitch/ofpbuf.h"
#include "openflow/openflow.h"
#include "ovstest.h"
#include "poll-loop.h"