summaryrefslogtreecommitdiff
path: root/cpp/src/tests/cluster_authentication_soak.cpp
diff options
context:
space:
mode:
authorMichael Goulish <mgoulish@apache.org>2010-05-24 22:56:40 +0000
committerMichael Goulish <mgoulish@apache.org>2010-05-24 22:56:40 +0000
commit7981b9d46fec43ff7b6969fca20c59d8c43b25eb (patch)
treea53a3216a46f28d7fe477f0957145bf27e0667b2 /cpp/src/tests/cluster_authentication_soak.cpp
parentb9e65f6bf0dddab93490792924ddf608eb22929e (diff)
downloadqpid-python-7981b9d46fec43ff7b6969fca20c59d8c43b25eb.tar.gz
Disable new sasl testing if SASL version is less than 2.1.22.
Earlier version do not have SASL_PATH_TYPE_CONFIG, which this testing requires. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@947850 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/cluster_authentication_soak.cpp')
-rw-r--r--cpp/src/tests/cluster_authentication_soak.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/tests/cluster_authentication_soak.cpp b/cpp/src/tests/cluster_authentication_soak.cpp
index 6963438d5f..9e878be6d1 100644
--- a/cpp/src/tests/cluster_authentication_soak.cpp
+++ b/cpp/src/tests/cluster_authentication_soak.cpp
@@ -241,6 +241,11 @@ using namespace qpid::tests;
int
main ( int argc, char ** argv )
{
+ // I need the SASL_PATH_TYPE_CONFIG feature, which did not appear until SASL 2.1.22
+ #if (SASL_VERSION_MAJOR < 2) || (SASL_VERSION_MINOR < 1) || (SASL_VERSION_STEP < 22)
+ return 0;
+ #endif
+
int n_iterations = argc > 1 ? atoi(argv[1]) : 1;
runSilent = argc > 2 ? atoi(argv[2]) : 1; // default to silent
int killBroker = argc > 3 ? atoi(argv[3]) : 0; // Force the kill of one broker.