summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/samples/build.xml
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-05 12:21:36 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-05 12:21:36 +0000
commiteda6f2a4367ea4e6507def8b3e5aeb7cba9e8288 (patch)
tree824bf0a967c5565f5f0f27c5b0732c252374e4a1 /java/sca/itest/samples/build.xml
parenta7621ae2165cc951c45fd44c56df260c9157b849 (diff)
Set up the sample scripts so that the automatic run uses a time to live of 4 seconds while the script, when run manually, waits for the user to press a key.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@741087 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/itest/samples/build.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/java/sca/itest/samples/build.xml b/java/sca/itest/samples/build.xml
index 06b60f28c2..124a30636c 100644
--- a/java/sca/itest/samples/build.xml
+++ b/java/sca/itest/samples/build.xml
@@ -28,22 +28,24 @@
service sides of the sample.
-->
<target name="run">
+
+ <property name="time.to.live" id="ttl" value="4000" />
+
<ant antfile="../../samples/implementation-java-calculator/build.xml"
dir="../../samples/implementation-java-calculator"/>
<ant antfile="../../samples/binding-ws-calculator/build.xml"
dir="../../samples/binding-ws-calculator"/>
- <!--parallel>
+ <parallel>
<ant antfile="../../samples/calculator-rmi-service/build.xml"
dir="../../samples/calculator-rmi-service"/>
<sequential>
<sleep seconds="2"/>
<ant antfile="../../samples/calculator-rmi-reference/build.xml"
dir="../../samples/calculator-rmi-reference"/>
-
</sequential>
- </parallel-->
+ </parallel>
</target>