summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-12-15 14:10:38 +0100
committerThomas Graf <tgraf@noironetworks.com>2014-12-15 14:15:19 +0100
commite6211adce42c28453e0004c7a3e342a3d52bb97d (patch)
treef4ededea7bc727aa458885ef336f712d4089c703 /tests
parent55951e15e5603318219ea5efca160723bbb28111 (diff)
downloadopenvswitch-e6211adce42c28453e0004c7a3e342a3d52bb97d.tar.gz
lib: Move vlog.h to <openvswitch/vlog.h>
A new function vlog_insert_module() is introduced to avoid using list_insert() from the vlog.h header. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test-flows.c2
-rw-r--r--tests/test-jsonrpc.c2
-rw-r--r--tests/test-lockfile.c2
-rw-r--r--tests/test-netflow.c2
-rw-r--r--tests/test-odp.c2
-rw-r--r--tests/test-ovsdb.c2
-rw-r--r--tests/test-reconnect.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-util.c2
-rw-r--r--tests/test-vconn.c2
12 files changed, 12 insertions, 12 deletions
diff --git a/tests/test-flows.c b/tests/test-flows.c
index 63340c7ae..19e83151b 100644
--- a/tests/test-flows.c
+++ b/tests/test-flows.c
@@ -30,7 +30,7 @@
#include "pcap-file.h"
#include "timeval.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
static void
test_flows_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
diff --git a/tests/test-jsonrpc.c b/tests/test-jsonrpc.c
index fe7d8691a..2aad5c543 100644
--- a/tests/test-jsonrpc.c
+++ b/tests/test-jsonrpc.c
@@ -31,7 +31,7 @@
#include "stream.h"
#include "timeval.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
OVS_NO_RETURN static void usage(void);
static void parse_options(int argc, char *argv[]);
diff --git a/tests/test-lockfile.c b/tests/test-lockfile.c
index 71ccbc6ab..d0c8dc480 100644
--- a/tests/test-lockfile.c
+++ b/tests/test-lockfile.c
@@ -26,7 +26,7 @@
#include "process.h"
#include "timeval.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
struct test {
const char *name;
diff --git a/tests/test-netflow.c b/tests/test-netflow.c
index b1b7717a0..b918d1550 100644
--- a/tests/test-netflow.c
+++ b/tests/test-netflow.c
@@ -32,7 +32,7 @@
#include "socket-util.h"
#include "unixctl.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
OVS_NO_RETURN static void usage(void);
static void parse_options(int argc, char *argv[]);
diff --git a/tests/test-odp.c b/tests/test-odp.c
index b38c2ebea..48ad56aca 100644
--- a/tests/test-odp.c
+++ b/tests/test-odp.c
@@ -25,7 +25,7 @@
#include "ofpbuf.h"
#include "ovstest.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
static int
parse_keys(bool wc_keys)
diff --git a/tests/test-ovsdb.c b/tests/test-ovsdb.c
index b113b9d61..99f41c1b5 100644
--- a/tests/test-ovsdb.c
+++ b/tests/test-ovsdb.c
@@ -49,7 +49,7 @@
#include "tests/idltest.h"
#include "timeval.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
OVS_NO_RETURN static void usage(void);
static void parse_options(int argc, char *argv[]);
diff --git a/tests/test-reconnect.c b/tests/test-reconnect.c
index 61f95a5d3..6e165a287 100644
--- a/tests/test-reconnect.c
+++ b/tests/test-reconnect.c
@@ -26,7 +26,7 @@
#include "ovstest.h"
#include "svec.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
static struct reconnect *reconnect;
static int now;
diff --git a/tests/test-rstp.c b/tests/test-rstp.c
index c5e7a562b..005423bf8 100644
--- a/tests/test-rstp.c
+++ b/tests/test-rstp.c
@@ -10,7 +10,7 @@
#include "ofpbuf.h"
#include "ovstest.h"
#include "packets.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
#define MAX_PORTS 10
diff --git a/tests/test-sflow.c b/tests/test-sflow.c
index 0bd5570f3..959cd6c53 100644
--- a/tests/test-sflow.c
+++ b/tests/test-sflow.c
@@ -35,7 +35,7 @@
#include "socket-util.h"
#include "unixctl.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
OVS_NO_RETURN static void usage(void);
static void parse_options(int argc, char *argv[]);
diff --git a/tests/test-stp.c b/tests/test-stp.c
index 88a138dc7..6250c547d 100644
--- a/tests/test-stp.c
+++ b/tests/test-stp.c
@@ -26,7 +26,7 @@
#include "ofpbuf.h"
#include "ovstest.h"
#include "packets.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
struct bpdu {
int port_no;
diff --git a/tests/test-util.c b/tests/test-util.c
index 74bc5c43c..2c985e71c 100644
--- a/tests/test-util.c
+++ b/tests/test-util.c
@@ -27,7 +27,7 @@
#include "command-line.h"
#include "ovstest.h"
#include "random.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
static void
check_log_2_floor(uint32_t x, int n)
diff --git a/tests/test-vconn.c b/tests/test-vconn.c
index c7869531a..b5ba1726a 100644
--- a/tests/test-vconn.c
+++ b/tests/test-vconn.c
@@ -36,7 +36,7 @@
#include "stream-ssl.h"
#include "timeval.h"
#include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
struct fake_pvconn {
const char *type;