summaryrefslogtreecommitdiff
path: root/java/demo/Ice/throughput/expect.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-11-07 12:51:04 -0330
committerMatthew Newhook <matthew@zeroc.com>2014-11-07 12:51:04 -0330
commitf30c0c5d5a6e0ac0c9fae5f3cab48adac6318cd4 (patch)
tree98cc6dbd7790c7f10217b20b7a6f385ec6fde6c9 /java/demo/Ice/throughput/expect.py
parentICE-5837 - test failures with C++/SSL (diff)
downloadice-f30c0c5d5a6e0ac0c9fae5f3cab48adac6318cd4.tar.bz2
ice-f30c0c5d5a6e0ac0c9fae5f3cab48adac6318cd4.tar.xz
ice-f30c0c5d5a6e0ac0c9fae5f3cab48adac6318cd4.zip
- Renamed gradle projects to camel case which enables task abbreviation.
- Demo builds now produce a runnable jar. - Fixes to expect.py and READMEs for this change.
Diffstat (limited to 'java/demo/Ice/throughput/expect.py')
-rwxr-xr-xjava/demo/Ice/throughput/expect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/demo/Ice/throughput/expect.py b/java/demo/Ice/throughput/expect.py
index 494467c6f20..579d8b12fc3 100755
--- a/java/demo/Ice/throughput/expect.py
+++ b/java/demo/Ice/throughput/expect.py
@@ -22,8 +22,8 @@ sys.path.append(path[0])
from demoscript import Util
from demoscript.Ice import throughput
-server = Util.spawn('java Server --Ice.PrintAdapterReady')
+server = Util.spawn('java -jar build/libs/server.jar --Ice.PrintAdapterReady')
server.expect('.* ready')
-client = Util.spawn('java Client')
+client = Util.spawn('java -jar build/libs/client.jar')
throughput.run(client, server)