aboutsummaryrefslogtreecommitdiff
path: root/tests/AsyncAPI.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/AsyncAPI.java')
-rw-r--r--tests/AsyncAPI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/AsyncAPI.java b/tests/AsyncAPI.java
index 2b85745..e174929 100644
--- a/tests/AsyncAPI.java
+++ b/tests/AsyncAPI.java
@@ -103,7 +103,7 @@ class AsyncAPI {
public static final String helpmsg = "usage: java "+SENDNAME+" [options]\n\t-b domain\n\t-r\t to enable async reception\n\t-x to enable async sending\n\t-l loop count (default "+NBITER+")\n\t-s msgsize\t int value (default "+MSGSIZE+")\n\t-d delay in milliseconds (default "+DELAYMS+")\n\t-q \tquiet\n\t-e\tsend bus stop at the end\n\t-h\thelp\n\n";
public static void main(String[] args) throws IvyException {
Getopt opt = new Getopt(SENDNAME,args,"b:l:d:s:xrqeh");
- String domain=Ivy.getDomain(null); // default bus
+ String domain=null;
int nb = NBITER, delay = DELAYMS, c, size = MSGSIZE;
boolean doasyncSend=false, doasyncBind=false, verbose=true, exit=false;
while ((c = opt.getopt()) != -1) switch (c) {