From 65957cc0c6940ab5d9ba584803843196188a34ab Mon Sep 17 00:00:00 2001 From: Kevin Krakauer Date: Thu, 8 Jun 2023 14:04:55 -0700 Subject: [PATCH] tcp_benchmark: fix typo Not every run of tcp_benchmark is a client run. PiperOrigin-RevId: 538885507 --- test/benchmarks/tcp/tcp_benchmark.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/benchmarks/tcp/tcp_benchmark.sh b/test/benchmarks/tcp/tcp_benchmark.sh index 933f8ff1f..2c1a8eaff 100755 --- a/test/benchmarks/tcp/tcp_benchmark.sh +++ b/test/benchmarks/tcp/tcp_benchmark.sh @@ -472,9 +472,9 @@ if [[ "${disable_linux_gro}" ]]; then fi if ${client}; then - echo "BenchmarkTCPClient/role=client/host-gso=\$hostgso/host-gro=\$hostgro 1 \$mbits Mb/s \$client_cpu_load cpu-time" + echo "BenchmarkTCP/role=client/host-gso=\$hostgso/host-gro=\$hostgro 1 \$mbits Mb/s \$client_cpu_load cpu-time" elif ${server}; then - echo "BenchmarkTCPClient/role=server/host-gso=\$hostgso/host-gro=\$hostgro 1 \$mbits Mb/s \$server_cpu_load cpu-time" + echo "BenchmarkTCP/role=server/host-gso=\$hostgso/host-gro=\$hostgro 1 \$mbits Mb/s \$server_cpu_load cpu-time" fi EOF