xenserver: Fix iteration of dictionary.
[openvswitch] / tests / automake.mk
index 8649b80480d89f80dd5f347c976f37d2809795e3..28b2749a3711f2c664ed8bc7fbcf9c0a80aaee83 100644 (file)
@@ -8,6 +8,7 @@ TESTSUITE_AT = \
        tests/testsuite.at \
        tests/ovsdb-macros.at \
        tests/library.at \
+       tests/heap.at \
        tests/bundle.at \
        tests/classifier.at \
        tests/check-structs.at \
@@ -69,6 +70,7 @@ check-local: tests/atconfig tests/atlocal $(TESTSUITE)
 
 lcov_wrappers = \
        tests/lcov/ovs-appctl \
+       tests/lcov/ovs-ofctl \
        tests/lcov/ovs-vsctl \
        tests/lcov/ovs-vswitchd \
        tests/lcov/ovsdb-client \
@@ -82,6 +84,7 @@ lcov_wrappers = \
        tests/lcov/test-file_name \
        tests/lcov/test-flows \
        tests/lcov/test-hash \
+       tests/lcov/test-heap \
        tests/lcov/test-hmap \
        tests/lcov/test-json \
        tests/lcov/test-jsonrpc \
@@ -125,6 +128,7 @@ check-lcov: all tests/atconfig tests/atlocal $(TESTSUITE) $(lcov_wrappers)
 
 valgrind_wrappers = \
        tests/valgrind/ovs-appctl \
+       tests/valgrind/ovs-ofctl \
        tests/valgrind/ovs-vsctl \
        tests/valgrind/ovs-vswitchd \
        tests/valgrind/ovsdb-client \
@@ -138,6 +142,7 @@ valgrind_wrappers = \
        tests/valgrind/test-file_name \
        tests/valgrind/test-flows \
        tests/valgrind/test-hash \
+       tests/valgrind/test-heap \
        tests/valgrind/test-hmap \
        tests/valgrind/test-json \
        tests/valgrind/test-jsonrpc \
@@ -225,6 +230,10 @@ noinst_PROGRAMS += tests/test-hash
 tests_test_hash_SOURCES = tests/test-hash.c
 tests_test_hash_LDADD = lib/libopenvswitch.a
 
+noinst_PROGRAMS += tests/test-heap
+tests_test_heap_SOURCES = tests/test-heap.c
+tests_test_heap_LDADD = lib/libopenvswitch.a
+
 noinst_PROGRAMS += tests/test-hmap
 tests_test_hmap_SOURCES = tests/test-hmap.c
 tests_test_hmap_LDADD = lib/libopenvswitch.a
@@ -261,6 +270,10 @@ noinst_PROGRAMS += tests/test-stp
 tests_test_stp_SOURCES = tests/test-stp.c
 tests_test_stp_LDADD = lib/libopenvswitch.a
 
+noinst_PROGRAMS += tests/test-netflow
+tests_test_netflow_SOURCES = tests/test-netflow.c
+tests_test_netflow_LDADD = lib/libopenvswitch.a
+
 noinst_PROGRAMS += tests/test-unix-socket
 tests_test_unix_socket_SOURCES = tests/test-unix-socket.c
 tests_test_unix_socket_LDADD = lib/libopenvswitch.a
@@ -321,6 +334,8 @@ noinst_PROGRAMS += tests/test-byte-order
 tests_test_byte_order_SOURCES = tests/test-byte-order.c
 tests_test_byte_order_LDADD = lib/libopenvswitch.a
 
+EXTRA_DIST += tests/choose-port.pl
+
 # Python tests.
 EXTRA_DIST += \
        tests/test-daemon.py \