evristzam / ndt

Automatically exported from code.google.com/p/ndt
Other
0 stars 0 forks source link

flash client packet queueing details for c2s and s2c tests are identical #163

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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;

Original issue reported on code.google.com by bchas...@gmail.com on 22 Nov 2014 at 11:41

GoogleCodeExporter commented 9 years ago

Original comment by skost...@soldevelo.com on 24 Nov 2014 at 7:50

GoogleCodeExporter commented 9 years ago
Fixed with r1171

Original comment by skost...@soldevelo.com on 24 Nov 2014 at 7:52