summaryrefslogtreecommitdiff
path: root/java/tools/src
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2009-05-25 02:56:14 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2009-05-25 02:56:14 +0000
commit7fe773bbe84322ccc02a87922c30d8f3cff3b268 (patch)
tree2f9733896253974a1353f5734db7f44b09854b38 /java/tools/src
parentb2be19aed2ba263f292c11c545825960f3c58b03 (diff)
downloadqpid-python-7fe773bbe84322ccc02a87922c30d8f3cff3b268.tar.gz
Added a message to indicate the producer and consumer have completed the test.
This can be then greped by any automated to test script to identify the end of a test run. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@778265 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/tools/src')
-rw-r--r--java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java b/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
index 9770adceb0..602fcc6321 100644
--- a/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
+++ b/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
@@ -453,6 +453,7 @@ public class QpidBench
{
throw new RuntimeException(e);
}
+ System.out.println("Consumer Completed");
}
};
@@ -492,6 +493,7 @@ public class QpidBench
{
throw new RuntimeException(e);
}
+ System.out.println("Producer Completed");
}
};
Thread t;