summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-07-26 09:35:28 -0700
committerBen Pfaff <blp@ovn.org>2018-08-03 16:24:33 -0700
commitf39f02102f669b85a37104e7bc60cb764cc6b2f3 (patch)
tree037aa7fc71c1269c0150d96ae7e8e699130851a7 /tests
parentc7b5c534842884445a5cc1452fee45b3c9fd655e (diff)
downloadopenvswitch-f39f02102f669b85a37104e7bc60cb764cc6b2f3.tar.gz
tests: Suppress "long poll interval" messages for ovsdb-cluster tests.
The cluster torture tests can provoke these messages, especially if run in parallel or with valgrind, and they shouldn't cause a failure. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Mark Michelson <mmichels@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/ovsdb-cluster.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ovsdb-cluster.at b/tests/ovsdb-cluster.at
index d94041a39..c27dd6ff0 100644
--- a/tests/ovsdb-cluster.at
+++ b/tests/ovsdb-cluster.at
@@ -100,14 +100,14 @@ ovsdb|WARN|schema: changed 2 columns in 'OVN_Southbound' database from ephemeral
connect_server() {
local i=$1
printf "\ns$i: waiting to connect to storage\n"
- AT_CHECK([ovsdb-client --timeout=30 -vfile -vsyslog:off -vvlog:off --log-file=connect$i.log wait unix:s$i.ovsdb $schema connected])
+ AT_CHECK([ovsdb-client --timeout=30 -vtimeval:off -vfile -vsyslog:off -vvlog:off --log-file=connect$i.log wait unix:s$i.ovsdb $schema connected])
}
remove_server() {
local i=$1
printf "\ns$i: removing from cluster\n"
AT_CHECK([ovs-appctl --timeout=30 -t "`pwd`"/s$i cluster/leave OVN_Southbound])
printf "\ns$i: waiting for removal to complete\n"
- AT_CHECK([ovsdb-client --timeout=30 -vfile -vsyslog:off -vvlog:off --log-file=remove$i.log wait unix:s$i.ovsdb $schema removed])
+ AT_CHECK([ovsdb-client --timeout=30 -vtimeval:off -vfile -vsyslog:off -vvlog:off --log-file=remove$i.log wait unix:s$i.ovsdb $schema removed])
stop_server $i
}
add_server() {