diff options
Diffstat (limited to 'java/demo/Ice/throughput/expect.py')
-rwxr-xr-x | java/demo/Ice/throughput/expect.py | 4 |
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) |