diff options
author | Alan Conway <aconway@apache.org> | 2009-02-24 19:27:57 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-02-24 19:27:57 +0000 |
commit | 338297ff8c2c65a4226f3bc3fdd4da49269cfc9a (patch) | |
tree | c5ee285b28396b2c5622d7fa756b033555623913 /cpp/src/tests/failover_soak.cpp | |
parent | b5c611ba1e7462a2b22e76da914c321b2cf3c49b (diff) | |
download | qpid-python-338297ff8c2c65a4226f3bc3fdd4da49269cfc9a.tar.gz |
QPID-1678 Mick Goulish: failover_soak using UUIDs for cluster name to avoid clashes.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@747521 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/failover_soak.cpp')
-rw-r--r-- | cpp/src/tests/failover_soak.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cpp/src/tests/failover_soak.cpp b/cpp/src/tests/failover_soak.cpp index 129c6b9745..5aad2b84e9 100644 --- a/cpp/src/tests/failover_soak.cpp +++ b/cpp/src/tests/failover_soak.cpp @@ -34,6 +34,8 @@ #include <boost/assign.hpp> +#include "qpid/framing/Uuid.h" + #include <ForkedBroker.h> @@ -42,6 +44,7 @@ using namespace std; using boost::assign::list_of; +using namespace qpid::framing; @@ -240,10 +243,9 @@ mrand ( int minDesiredVal, int maxDesiredVal ) { void -makeClusterName ( string & s, int & num ) { - num = mrand(1000); +makeClusterName ( string & s ) { stringstream ss; - ss << "soakTestCluster_" << num; + ss << "soakTestCluster_" << Uuid(true).str(); s = ss.str(); } @@ -492,12 +494,11 @@ main ( int argc, char const ** argv ) allMyChildren.verbosity = verbosity; - int clusterNum; string clusterName; srand ( getpid() ); - makeClusterName ( clusterName, clusterNum ); + makeClusterName ( clusterName ); brokerVector brokers; |