From dfc6850b90ee221a3c4f372e079577ee814d85b4 Mon Sep 17 00:00:00 2001 From: Matthew Kotila Date: Mon, 9 Oct 2023 15:37:51 -0700 Subject: [PATCH] Fix unit test failure Creates parity with changes from https://github.com/triton-inference-server/client/pull/410 --- src/c++/perf_analyzer/test_command_line_parser.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/c++/perf_analyzer/test_command_line_parser.cc b/src/c++/perf_analyzer/test_command_line_parser.cc index bb65f4dc5..cb443e0f1 100644 --- a/src/c++/perf_analyzer/test_command_line_parser.cc +++ b/src/c++/perf_analyzer/test_command_line_parser.cc @@ -1224,7 +1224,6 @@ TEST_CASE("Testing Command Line Parser") exp->async = true; exp->streaming = true; exp->url = "localhost:8001"; // gRPC url - exp->max_threads = 4; // not targeting concurrency SUBCASE("start provided") { @@ -1246,6 +1245,8 @@ TEST_CASE("Testing Command Line Parser") check_params = false; } + exp->max_threads = 400; + CheckValidRange( args, option_name, parser, act, exp->is_using_periodic_concurrency_mode, exp->periodic_concurrency_range);