diff options
Diffstat (limited to 'cpp/src/tests')
-rw-r--r-- | cpp/src/tests/ConnectionOptions.h | 1 | ||||
-rw-r--r-- | cpp/src/tests/cluster.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/tests/ConnectionOptions.h b/cpp/src/tests/ConnectionOptions.h index 1579ac0b57..0130842668 100644 --- a/cpp/src/tests/ConnectionOptions.h +++ b/cpp/src/tests/ConnectionOptions.h @@ -37,6 +37,7 @@ struct ConnectionOptions : public qpid::Options, addOptions() ("broker,b", optValue(host, "HOST"), "Broker host to connect to") ("port,p", optValue(port, "PORT"), "Broker port to connect to") + ("protocol,P", optValue(protocol, "tcp|rdma"), "Protocol to use for broker connection") ("virtualhost,v", optValue(virtualhost, "VHOST"), "virtual host") ("username", optValue(username, "USER"), "user name for broker log in.") ("password", optValue(password, "PASSWORD"), "password for broker log in.") diff --git a/cpp/src/tests/cluster.mk b/cpp/src/tests/cluster.mk index 8b83e927ec..3454beb9bc 100644 --- a/cpp/src/tests/cluster.mk +++ b/cpp/src/tests/cluster.mk @@ -3,7 +3,7 @@ if CPG # Cluster tests makefile fragment, to be included in Makefile.am # -lib_cluster = $(abs_builddir)/../libqpidcluster.la +lib_cluster = $(abs_builddir)/../cluster.la # NOTE: Programs using the openais library must be run with gid=ais # You should do "newgrp ais" before running the tests to run these. |