Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r913 committed - The wait flag values in both clients consistent with the documentation...

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r913 committed - The wait flag values in both clients consistent with the documentation...


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r913 committed - The wait flag values in both clients consistent with the documentation...
  • Date: Fri, 14 Feb 2014 10:07:33 +0000

Revision: 913
Author:

Date: Fri Feb 14 10:07:19 2014 UTC
Log: The wait flag values in both clients consistent with the documentation. N (number of waiting test clients) == number of minutes which client should wait (in seconds -> N*60)
http://code.google.com/p/ndt/source/detail?r=913

Modified:
/branches/applet_103/Applet/src/edu/internet2/ndt/Tcpbw100.java
/branches/applet_103/src/web100clt.c

=======================================
--- /branches/applet_103/Applet/src/edu/internet2/ndt/Tcpbw100.java Mon Feb 10 12:13:40 2014 UTC
+++ /branches/applet_103/Applet/src/edu/internet2/ndt/Tcpbw100.java Fri Feb 14 10:07:19 2014 UTC
@@ -2477,13 +2477,12 @@
continue;
}

- // Each test should take less than 30 seconds, so
tell them 45 sec *
- // number of
- // tests-suites waiting in the queue. Note that
server sends a
- // number equal to the number of clients ==
+ // Each test should take less than 30 seconds,
+ // Tell them 60 sec * number of tests-suites waiting
in the queue.
+ // Note that server sends a number equal to the
number of clients ==
// number of minutes to wait before starting tests
(i.e wait =
// number of minutes to wait = number of queued
clients)
- wait = (wait * 45);
+ wait = (wait * 60);

_resultsTxtPane.append(_resBundDisplayMsgs.getString("otherClient")
+ wait +
_resBundDisplayMsgs.getString("seconds") + ".\n");
iServerWaitFlag = 1; // mark variable as ==first
message from server
=======================================
--- /branches/applet_103/src/web100clt.c Mon Feb 10 12:07:41 2014 UTC
+++ /branches/applet_103/src/web100clt.c Fri Feb 14 10:07:19 2014 UTC
@@ -722,13 +722,13 @@
}


- /* Each test should take less than 30 s. So convey 45 sec *
- number of tests-suites waiting in the queue. Note that server sends a
- number equal to the number of clients ==
+ /* Each test should take less than 30 s.
+ Convey 60 sec * number of tests-suites waiting in the queue.
+ Note that server sends a number equal to the number of clients ==
number of minutes to wait before starting tests. In other words,
wait = num of minutes to wait = number of queued clients */

- xwait = (xwait * 45);
+ xwait = (xwait * 60);
log_print(0,
"Another client is currently begin served, your test will ");
log_println(0, "begin within %d seconds", xwait);


  • [ndt-dev] [ndt] r913 committed - The wait flag values in both clients consistent with the documentation..., ndt, 02/14/2014

Archive powered by MHonArc 2.6.16.

Top of Page