summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2012-03-16 08:20:24 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2012-03-16 08:20:24 +0000
commit64fa14787b2b4b7b30756a360a34a55631e592f6 (patch)
tree59c7f69a3cc58ec8ac7ce63b78704d9ef66cb1a5 /sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java
parente96dd3904b142b0dc9d2313a4ee5d6327774469f (diff)
TUSCANY-4028 - don't duplicate intents on the Java implementation model
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1301369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java')
-rw-r--r--sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java/org/apache/tuscany/sca/test/performance/PerformanceTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java/org/apache/tuscany/sca/test/performance/PerformanceTestCase.java b/sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java/org/apache/tuscany/sca/test/performance/PerformanceTestCase.java
index 454ad9dad8..329eea6a3d 100644
--- a/sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java/org/apache/tuscany/sca/test/performance/PerformanceTestCase.java
+++ b/sca-java-2.x/trunk/testing/itest/performance/performance-test/src/test/java/org/apache/tuscany/sca/test/performance/PerformanceTestCase.java
@@ -224,11 +224,11 @@ public class PerformanceTestCase {
System.out.println("You can watch a JVM run using \n" +
" jconsole \n" +
"You can manually dump the heap using \n" +
- " jmap -dump:file=heapdump.bin 345" +
+ " jmap -dump:file=heap_stop_" + name + ".bin 345" +
"Where 345 is the process id from jconsole \n" +
"The program dumps the heap at the start and end. You can look at them using \n" +
" jhat -J-Xmx512m heap_start.bin\n" +
- " jhat -J-Xmx512m heap_stop.bin\n" +
+ " jhat -J-Xmx512m heap_stop_" + name + ".bin\n" +
"Then point your browser at\n" +
" http://localhost:7000/");
} else {