aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-10-28 17:13:18 -0700
committerBen Pfaff <blp@nicira.com>2010-10-29 09:48:47 -0700
commit10a24935c9d382e4d85b05d9616843f3d3bb4983 (patch)
tree20157e20f0f2ddd2e93d66428f23663da7a78c4f /tests
parent965f03d85ff6288eec3919edb67d5a2d247a6625 (diff)
xtoxll: Rename "byte-order" since it now include more than xtoxll.
Suggested-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/automake.mk14
-rw-r--r--tests/library.at4
-rw-r--r--tests/test-byte-order.c (renamed from tests/test-xtoxll.c)2
-rw-r--r--tests/test-classifier.c2
4 files changed, 11 insertions, 11 deletions
diff --git a/tests/automake.mk b/tests/automake.mk
index 34b0a801..f9c0de0e 100644
--- a/tests/automake.mk
+++ b/tests/automake.mk
@@ -61,6 +61,7 @@ lcov_wrappers = \
tests/lcov/ovsdb-server \
tests/lcov/ovsdb-tool \
tests/lcov/test-aes128 \
+ tests/lcov/test-byte-order \
tests/lcov/test-classifier \
tests/lcov/test-csum \
tests/lcov/test-dhcp-client \
@@ -78,8 +79,7 @@ lcov_wrappers = \
tests/lcov/test-timeval \
tests/lcov/test-type-props \
tests/lcov/test-uuid \
- tests/lcov/test-vconn \
- tests/lcov/test-xtoxll
+ tests/lcov/test-vconn
$(lcov_wrappers): tests/lcov-wrapper.in
@test -d tests/lcov || mkdir tests/lcov
@@ -110,6 +110,7 @@ valgrind_wrappers = \
tests/valgrind/ovsdb-server \
tests/valgrind/ovsdb-tool \
tests/valgrind/test-aes128 \
+ tests/valgrind/test-byte-order \
tests/valgrind/test-classifier \
tests/valgrind/test-csum \
tests/valgrind/test-dhcp-client \
@@ -127,8 +128,7 @@ valgrind_wrappers = \
tests/valgrind/test-timeval \
tests/valgrind/test-type-props \
tests/valgrind/test-uuid \
- tests/valgrind/test-vconn \
- tests/valgrind/test-xtoxll
+ tests/valgrind/test-vconn
$(valgrind_wrappers): tests/valgrind-wrapper.in
@test -d tests/valgrind || mkdir tests/valgrind
@@ -270,9 +270,9 @@ EXTRA_DIST += \
tests/testpki-req.pem \
tests/testpki-req2.pem
-noinst_PROGRAMS += tests/test-xtoxll
-tests_test_xtoxll_SOURCES = tests/test-xtoxll.c
-tests_test_xtoxll_LDADD = lib/libopenvswitch.a
+noinst_PROGRAMS += tests/test-byte-order
+tests_test_byte_order_SOURCES = tests/test-byte-order.c
+tests_test_byte_order_LDADD = lib/libopenvswitch.a
# Python tests.
EXTRA_DIST += \
diff --git a/tests/library.at b/tests/library.at
index cf7505c9..1dca2b85 100644
--- a/tests/library.at
+++ b/tests/library.at
@@ -35,6 +35,6 @@ AT_CHECK([test-strtok_r], [0], [ignore])
AT_CLEANUP
AT_SETUP([test byte order conversion])
-AT_KEYWORDS([xtoxll])
-AT_CHECK([test-xtoxll], [0], [ignore])
+AT_KEYWORDS([byte order])
+AT_CHECK([test-byte-order], [0], [ignore])
AT_CLEANUP
diff --git a/tests/test-xtoxll.c b/tests/test-byte-order.c
index b658b869..18707545 100644
--- a/tests/test-xtoxll.c
+++ b/tests/test-byte-order.c
@@ -15,7 +15,7 @@
*/
#include <config.h>
-#include "xtoxll.h"
+#include "byte-order.h"
#include <assert.h>
#include <inttypes.h>
diff --git a/tests/test-classifier.c b/tests/test-classifier.c
index 73229c2e..fe7155bb 100644
--- a/tests/test-classifier.c
+++ b/tests/test-classifier.c
@@ -29,10 +29,10 @@
#include "classifier.h"
#include <errno.h>
#include <limits.h>
+#include "byte-order.h"
#include "command-line.h"
#include "flow.h"
#include "packets.h"
-#include "xtoxll.h"
#undef NDEBUG
#include <assert.h>