summaryrefslogtreecommitdiff
path: root/qpid/java/tools
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
commitb1026352ae2413fd637798df1f49a96b5c4a14ab (patch)
tree3f7d056031e471ca67aad33bb9235a68ce4a4982 /qpid/java/tools
parent88136d8696689d7478a5daa7d1c0b2b89c78d93b (diff)
downloadqpid-python-b1026352ae2413fd637798df1f49a96b5c4a14ab.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@778265 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/tools')
-rw-r--r--qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java b/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
index 9770adceb0..602fcc6321 100644
--- a/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
+++ b/qpid/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;