Jan Tattermusch
ab719ddad3
Merge pull request #24706 from jtattermusch/win_rbe_no_key
...
Stop requiring json key for RBE on Linux and Windows
4 years ago
Jan Tattermusch
cf8792c7de
improve check for Unity runtime
4 years ago
Yang Gao
4ac9c6f755
Merge pull request #24693 from yang-g/remove_log
...
Remove hack for Xcode 10
4 years ago
Nicolas 'Pixel' Noble
05adff7f78
Passing to Esun.
4 years ago
Mark D. Roth
6c549d46de
Merge pull request #24500 from beshaya/abstract_namespace
...
Add support for "unix-abstract:" URIs to support abstract unix domain sockets
4 years ago
Jan Tattermusch
a8f7b2d005
stop using GrpcTesting-d0eeee2db331.json for RBE authentication on linux
4 years ago
Mark D. Roth
b852af8f49
Merge pull request #24694 from markdroth/clang_tidy_if_braces
...
clang-tidy: enable google-readability-braces-around-statements
4 years ago
Jan Tattermusch
e58f0129d2
Stop relying on rbe-windows-credentials.json
4 years ago
Chengyuan Zhang
8d023a478c
Update test description.
4 years ago
Chengyuan Zhang
bd0b4bb367
Implement more advanced circuit breaking test with two backend services.
4 years ago
Chengyuan Zhang
df64f452de
Configure client to send both unary and empty calls.
4 years ago
Chengyuan Zhang
8c24041c37
Enable running circuit_breaking_test_advanced.
4 years ago
Chengyuan Zhang
30b0a06e8f
Categorize accumulated stats by methods.
4 years ago
Chengyuan Zhang
c7506e9b41
Implement advanced circuit breaking test
4 years ago
Chengyuan Zhang
d25d8d64a3
Ensure number of outstanding RPCs being stable.
4 years ago
Chengyuan Zhang
4f5d6e44a6
Formatting.
4 years ago
Chengyuan Zhang
172b59be33
Fix formatting.
4 years ago
Chengyuan Zhang
1d0bed27d6
Simplify test logic by only checking the number of RPCs being in-flight.
4 years ago
Menghan Li
16284869d3
Merge pull request #24496 from menghanl/xds_test_doc
...
xds testing: add path matching and header matching to test desc
4 years ago
Chengyuan Zhang
993050099d
Use _WAIT_FOR_BACKEND_SEC as the timeout for waiting a specific number of RPCs to be in-flight.
4 years ago
Chengyuan Zhang
1746fae565
Eliminate unnecessary wait_until_all_rpcs_fail
4 years ago
Yang Gao
e3167b596c
Merge pull request #24691 from Capstan/retire-flags
...
Retire deprecated auth-related grpc_cli flags
4 years ago
Chengyuan Zhang
9a2a75f830
Directly use enum values defined in the message instead of doing string conversion.
4 years ago
Mark D. Roth
27e1c1c56d
clang-tidy: enable google-readability-braces-around-statements
4 years ago
Chengyuan Zhang
6c1907aa42
Move circuit_breaking from _TEST_CASES to _ADDITIONAL_TEST_CASES as not all languages have the feature ready.
4 years ago
Chengyuan Zhang
b221b5e16e
Update test description.
4 years ago
Lidi Zheng
6c7e91e633
Merge pull request #24692 from lidizheng/increase-timeout-basic-test
...
Increase the timeout of Python basic tests on Windows
4 years ago
Chengyuan Zhang
66feb8c2d9
Implement the basic test case for limiting max number of concurrent RPCs.
4 years ago
yang-g
ec074a0df9
Remove hack for Xcode 10
4 years ago
Benjamin Shaya
702edbeee4
Add support for "unix-abstract:" URIs to support abstract unix domain sockets
...
Adapted from #21278 by @mheese
4 years ago
Lidi Zheng
85d0d548c4
Increase the timeout of Python basic tests on Windows
4 years ago
capstan
27c0b32668
Retire flags
4 years ago
Esun Kim
8288687032
Merge pull request #24653 from Capstan/absl-flags
...
Roll forward of commit 7883b51: Use abseil's flags in tests.
4 years ago
capstan
131579d52d
Roll forward of commit 7883b51: Use abseil's flags in tests.
...
This replaces gflags. Added TODOs where use of `absl::Duration` or `absl::FlagSaver` might be preferred in follow-up cleanup. Fixes #24493 .
This reverts commit da66b7d14e
.
NEW:
* Adds references to `absl/flags/declare.h`, new to LTS 2020923.2 imported in commit 5b43440
.
* Works around MSVC 2017 compiler error with large help text on flags by reducing the help text.
4 years ago
Esun Kim
23e0a04060
Merge pull request #24682 from veblush/no-xds-size
...
Remove XDS size test
4 years ago
Esun Kim
849368ece5
Remove XDS size test
4 years ago
Yash Tibrewal
e31de9f4f4
Merge pull request #24671 from yashykt/cdsupdate
...
Update CertificateProviderInstance passing to include certificate name
4 years ago
Esun Kim
c459f458a3
Merge pull request #24303 from veblush/sym-all
...
Enable Abseil crash handler on Windows
4 years ago
Esun Kim
ccdfcc2ee8
Add workaround for bazel
4 years ago
Esun Kim
4563ff9780
Enable Abseil crash handler on Windows
4 years ago
Michael Lumish
273e3cfb79
Update Node examples to use @grpc/grpc-js
4 years ago
Jan Tattermusch
ce4870d159
Merge pull request #24663 from codeblooded/python/enhancement/standardize-server-port
...
Make python qps_worker --server_port consistent
4 years ago
Yash Tibrewal
398968d90e
Merge pull request #24646 from yashykt/updatebootstrapstring
...
Update BootstrapString() for certificate providers
4 years ago
yulin-liang
0e7faed883
Fix flaky ios-cpp-test-cronet test.
4 years ago
Yash Tibrewal
37445bfa59
Merge pull request #24651 from yashykt/reenableobjctest
...
Re-enable testKeepaliveWithV2API
4 years ago
Yash Tibrewal
0d4069a7a3
Update CertificateProviderInstance passing to include certificate name
4 years ago
Ben Reed
eacf3ba54f
Make python qps_worker --server_port consistent
...
The python qps_worker was changed in grpc/grpc#24350 , adding support for
the --server_port flag. When the --server_port flag was set, the python
worker ignored the port specified in the Scenario's ServerConfig.
This behavior was inconsistent with Java and Go. In the workers for
those languages, the --server_port flag was used only when the
Scenario's ServerConfig port was unset. It did not override.
This commit alters the behavior of the python qps_worker to match Java
and Go, similar to grpc/grpc#24661 for C++. In addition, it updates the
documentation for the flag.
4 years ago
Yash Tibrewal
f22e350b0a
Update bootstrap string for certificate providers
4 years ago
Esun Kim
5fc1a7c8cc
Merge pull request #24664 from veblush/fix-stacktrace-test2
...
Disable debugging-test when running with MUSL
4 years ago
Esun Kim
4c37a5003d
Disable debugging-test when running with MUSL
4 years ago