From e854a58a81ec90e419a4b3effa5a83caac05df90 Mon Sep 17 00:00:00 2001 From: jestin Date: Sun, 13 May 2012 08:54:38 +0000 Subject: Modified the tests to remove bus.getDomain(null) make Waiter and WaiterClient sons of WaitFor Added a few tests into svn --- tests/AsyncAPI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/AsyncAPI.java') 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) { -- cgit v1.1