mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
434 B
13 lines
434 B
2 years ago
|
# Running a test locally during development
|
||
|
|
||
|
To start a server during development:
|
||
|
1. Choose an available port number.
|
||
|
2. Start the server:
|
||
|
```
|
||
|
GRPC_VERBOSITY=DEBUG ibazel run --compilation_mode=dbg //test/cpp/interop:interop_server -- --port={port_number}
|
||
|
```
|
||
|
3. Start the client:
|
||
|
```
|
||
|
GRPC_VERBOSITY=DEBUG ibazel run --test_output=streamed //test/cpp/interop:interop_client -- --server_port={port_number} --test_case={test_case}
|
||
|
```
|