mirror of
https://github.com/php-win-ext/grpc.git
synced 2026-03-24 17:12:19 +01:00
Applied two clang 17 tidy fixes; - https://clang.llvm.org/extra/clang-tidy/checks/readability/container-size-empty.html - https://clang.llvm.org/extra/clang-tidy/checks/modernize/make-shared.html Closes #37104 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37104 from veblush:fix-tidy 7b905869b819ac3bd6c45feed665e1f98a0585ca PiperOrigin-RevId: 650815403
Running a test locally during development
To start a server during development:
- Choose an available port number.
- Start the server:
GRPC_VERBOSITY=DEBUG ibazel run --compilation_mode=dbg //test/cpp/interop:interop_server -- --port={port_number}
- Start the client:
GRPC_VERBOSITY=DEBUG ibazel run --test_output=streamed //test/cpp/interop:interop_client -- --server_port={port_number} --test_case={test_case}