From 805d04eb220f59eb18b58ed41169442e79fdeeaf Mon Sep 17 00:00:00 2001 From: Shachar Langbeheim <98546660+shachlanAmazon@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:20:07 +0300 Subject: [PATCH] C#: run the benchmark once. (#1206) The benchmark shouldn't run twice, and is currently broken for anyone who doesn't have .net 8 installed. If there's an interest in the benchmark result of different frameworks, the framework can be added as an argument. Co-authored-by: nihohit --- benchmarks/install_and_test.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/benchmarks/install_and_test.sh b/benchmarks/install_and_test.sh index 69dec5e389..d3c34b59ea 100755 --- a/benchmarks/install_and_test.sh +++ b/benchmarks/install_and_test.sh @@ -68,7 +68,6 @@ function runCSharpBenchmark(){ dotnet clean dotnet build --configuration Release /warnaserror dotnet run --framework net6.0 --configuration Release --resultsFile=../$1 --dataSize $2 --concurrentTasks $concurrentTasks --clients $chosenClients --host $host --clientCount $clientCount $tlsFlag $portFlag $minimalFlag - dotnet run --framework net8.0 --configuration Release --resultsFile=../$1 --dataSize $2 --concurrentTasks $concurrentTasks --clients $chosenClients --host $host --clientCount $clientCount $tlsFlag $portFlag $minimalFlag } function runJavaBenchmark(){