diff options
| author | Robert Gemmell <robbie@apache.org> | 2012-09-23 20:50:48 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2012-09-23 20:50:48 +0000 |
| commit | 12007445b9a7e61af7cafae7fa548affcf3c0359 (patch) | |
| tree | d7427ce6e86d92e2fb4561e5fc9b4bd1882a2e7d /qpid/java/perftests/etc | |
| parent | 9da56b64ac7b73ea7cf88ef7d751b04371173315 (diff) | |
| download | qpid-python-12007445b9a7e61af7cafae7fa548affcf3c0359.tar.gz | |
QPID-4341: ensure the Topic perftests actually use Topic destinations
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1389143 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests/etc')
4 files changed, 7 insertions, 0 deletions
diff --git a/qpid/java/perftests/etc/testdefs/Topic-AckModes.js b/qpid/java/perftests/etc/testdefs/Topic-AckModes.js index 31da633695..3f7eb5d3a7 100644 --- a/qpid/java/perftests/etc/testdefs/Topic-AckModes.js +++ b/qpid/java/perftests/etc/testdefs/Topic-AckModes.js @@ -47,6 +47,7 @@ var jsonObject = { { "_name": "Producer", "_destinationName": topicName, + "_isTopic": true, "_deliveryMode": 1, "_maximumDuration": duration, "_startDelay": 2000 // gives the consumers time to implicitly create the topic @@ -72,6 +73,7 @@ var jsonObject = { { "_name": "Consumer-__INDEX", "_destinationName": topicName, + "_isTopic": true, "_maximumDuration": duration, } ] diff --git a/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js b/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js index 58ae2f5862..c0e29e165d 100644 --- a/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js +++ b/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js @@ -46,6 +46,7 @@ for(i=0; i < numbersOfConsumers.length ; i++) { "_name": "Producer1", "_destinationName": topicName, + "_isTopic": true, "_deliveryMode": 1, "_maximumDuration": duration, "_startDelay": 2000 // gives the consumers time to implicitly create the topic @@ -70,6 +71,7 @@ for(i=0; i < numbersOfConsumers.length ; i++) { "_name": "Consumer-__INDEX", "_destinationName": topicName, + "_isTopic": true, "_maximumDuration": duration } ] diff --git a/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js b/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js index d31dd36c76..6658b3c519 100644 --- a/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js +++ b/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js @@ -49,6 +49,7 @@ for(i=0; i < numbersOfTopics.length ; i++) { "_name": "Producer-__INDEX", "_destinationName": topicName, + "_isTopic": true, "_deliveryMode": 1, "_maximumDuration": duration, "_startDelay": 2000 // gives the consumers time to implicitly create the topic @@ -75,6 +76,7 @@ for(i=0; i < numbersOfTopics.length ; i++) { "_name": "Consumer-__INDEX", "_destinationName": topicName, + "_isTopic": true, "_maximumDuration": duration } ] diff --git a/qpid/java/perftests/etc/testdefs/Topic-Persistence.js b/qpid/java/perftests/etc/testdefs/Topic-Persistence.js index 4456d96ac2..696a1ad435 100644 --- a/qpid/java/perftests/etc/testdefs/Topic-Persistence.js +++ b/qpid/java/perftests/etc/testdefs/Topic-Persistence.js @@ -52,6 +52,7 @@ var jsonObject = { { "_name": "Producer", "_destinationName": topicName, + "_isTopic": true, "_maximumDuration": duration, "_startDelay": 2000 // gives the consumers time to implicitly create the topic } |
