Skip to content

Commit

Permalink
fix syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Nov 29, 2023
1 parent 22ef852 commit 450eb9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/secnetperf.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This should have been accomplished in netperf/quic.yml.

param (
[Parameter(Mandatory = $false, ParameterSetName='Logging')]
[switch]$Logging = $false,
[switch]$Logging = $false
)

# Set up the connection to the peer over remote powershell.
Expand Down Expand Up @@ -69,11 +69,11 @@ Write-Output "Running tests on the client..."
# Define the array of Secnetperf run commands
# TODO: Add more tests here. Include TCP tests too.
$commands = @(
".\artifacts\bin\windows\x64_Release_schannel\secnetperf.exe -target:netperf-peer -exec:maxtput -test:tput -upload:10000 -timed:1",
".\artifacts\bin\windows\x64_Release_schannel\secnetperf.exe -target:netperf-peer -exec:maxtput -test:tput -upload:10000 -timed:1"
)
# Along with their metadata
$commandMetadata = @(
"Max throughput test with QUIC with -upload:10000, -timed:1",
"Max throughput test with QUIC with -upload:10000, -timed:1"
)

for ($i = 0; $i -lt $commands.Count; $i++) {
Expand Down

0 comments on commit 450eb9a

Please sign in to comment.