Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] Issue 163 in ndt: flash client packet queueing details for c2s and s2c tests are identical

Subject: NDT-DEV email list created

List archive

[ndt-dev] Issue 163 in ndt: flash client packet queueing details for c2s and s2c tests are identical


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] Issue 163 in ndt: flash client packet queueing details for c2s and s2c tests are identical
  • Date: Sat, 22 Nov 2014 11:41:47 +0000

Status: New
Owner: ----
Labels: Type-Defect Severity-Medium

New issue 163 by : flash client packet queueing details for c2s and s2c tests are identical
https://code.google.com/p/ndt/issues/detail?id=163

In the current Trunk Version r1170 of TestResultsUtils.as

TestResultsUtils.as
lines 691 - 693
var s2cQueue:Number = (TestResults.ndt_test_results::c2sSpeed
- TestResults.ndt_test_results::sc2sSpeed)
/ TestResults.ndt_test_results::c2sSpeed;

the wrong variables are used to compute the packet queueing for s2c test

Code should be:

var s2cQueue:Number = (TestResults.ndt_test_results::s2cSpeed
- TestResults.ndt_test_results::ss2cSpeed)
/ TestResults.ndt_test_results::s2cSpeed;


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings



Archive powered by MHonArc 2.6.16.

Top of Page