From 763b4f3146e8737854c521c644beaf9819ac7458 Mon Sep 17 00:00:00 2001 From: Shital Savekar Date: Mon, 21 Aug 2017 22:00:26 +0530 Subject: [PATCH] Fixed typo in UDP tests. --- Azure_ICA_all.xml | 8 ++++---- remote-scripts/ICA-PERF-UDP-LOSS-TEST.ps1 | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Azure_ICA_all.xml b/Azure_ICA_all.xml index f16baa8..e245235 100644 --- a/Azure_ICA_all.xml +++ b/Azure_ICA_all.xml @@ -7166,7 +7166,7 @@ testType=udp max_parallel_connections_per_instance=64 connections=(1 2 4 8 16 32 64 128 256 512 1024) - bufferLenghs=(1 8) + bufferLengths=(1 8) IPversion=4 P0 @@ -7184,7 +7184,7 @@ testType=tcp max_parallel_connections_per_instance=64 connections=(1 2 4 8 16 32 64 128 256 512 1024) - bufferLenghs=(1024) + bufferLengths=(1024) IPversion=6 P0 @@ -7202,7 +7202,7 @@ testType=tcp max_parallel_connections_per_instance=64 connections=(1 2 4 8 16 32 64 128 256 512 1024) - bufferLenghs=(1024) + bufferLengths=(1024) IPversion=4 P0 @@ -7220,7 +7220,7 @@ testType=tcp max_parallel_connections_per_instance=64 connections=(1 2 4 8 16 32 64 128 256 512 1024) - bufferLenghs=(1024) + bufferLengths=(1024) IPversion=4 P0 diff --git a/remote-scripts/ICA-PERF-UDP-LOSS-TEST.ps1 b/remote-scripts/ICA-PERF-UDP-LOSS-TEST.ps1 index 44faa22..9f88b36 100644 --- a/remote-scripts/ICA-PERF-UDP-LOSS-TEST.ps1 +++ b/remote-scripts/ICA-PERF-UDP-LOSS-TEST.ps1 @@ -55,7 +55,7 @@ if ($isDeployed) foreach ( $param in $currentTestData.TestParameters.param) { Add-Content -Value "$param" -Path $constantsFile - if ($param -imatch "bufferLenghs=") + if ($param -imatch "bufferLengths=") { $testBuffers= $param.Replace("bufferLenghs=(","").Replace(")","").Split(" ") }