Nikolai Lifanov
1d9a18407a
Merge branch 'cstd' of github.com:lifanov/grpc into cstd
6 years ago
Nikolai Lifanov
4fdfdd5d2c
Merge branch 'master' into cstd
6 years ago
Nikolai Lifanov
ad093660ff
format with yapf
...
This was already formatted with yapf, but perhaps I didn't do this
correctly. I copied the diff directly from kokoro build log this
time.
6 years ago
Nikolai Lifanov
c9e17aa21b
Merge branch 'master' into cstd
6 years ago
Nikolai Lifanov
c1451e83d5
generalize macOS workaround for -std=c++11 passed in C mode
...
GCC allows this, but notably clang does not. Other systems,
like FreeBSD and some Linux distros ship with clang as default
compiler. While here, switch the approach to filtering out std
flag since the make workaround relies on GNU make syntax and
'make' binary could be bmake and/or gmake could be absent.
The idea to filter the flags was taken from an answer to this
Stack Overflow question:
https://stackoverflow.com/questions/15527611/how-do-i-specify-different-compiler-flags-in-distutils-for-just-one-python-c-ext
6 years ago
Nicolas Noble
8fd43c2e91
Merge pull request #18125 from allevato/fix-cares-config
...
Support "darwin_x86_64" CPU in cares.BUILD.
6 years ago
rmstar
b1c5376ca1
Merge pull request #18118 from rmstar/cfstreamlib
...
Fix C++ build on Mac OS
6 years ago
Prashant Jaikumar
b889461b46
Fixed cast in endpoint_cfstream.cc
6 years ago
Prashant Jaikumar
e8efe06a42
Re-add cfstream_test
...
2nd attempt at adding cfstream_test after fixing internal build failures caused by first attempt.
6 years ago
Lidi Zheng
9a548969ed
Merge branch 'master' into bzl-py3-fix
6 years ago
Eric Gribkoff
8ba4d3a801
Disable test_abort_does_not_leak_local_vars
...
This test relies on gc timing and has been flaky
(https://github.com/grpc/grpc/issues/17927 ).
6 years ago
Mark D. Roth
523e537368
Start connectivity watches before updating connectivity state.
6 years ago
Mark D. Roth
624fb64f61
LB policy ctors no longer perform updates; UpdateLocked() must be called
...
after construction.
6 years ago
Eric Gribkoff
0e0a535bcc
Merge pull request #18128 from ericgribkoff/disable_flaky_test
...
Disable flaky health service test
6 years ago
Eric Gribkoff
deb1081536
Disable flaky health service test
6 years ago
rmstar
7f869b46d1
Merge pull request #18121 from rmstar/flakyflake
...
Debug flaky_network_test
6 years ago
Tony Allevato
330e0f3ba8
Support "darwin_x86_64" CPU in cares.BUILD.
...
Bazel recognizes both "darwin" and "darwin_x86_64" as CPU values, and
the Apple Bazel rules currently recommend the latter for building
macOS targets. Until this is cleaned up, this change allows grpc to
build correctly when that configuration is used.
Fixes #17649 .
6 years ago
Yang Gao
202c989cda
Merge pull request #18120 from vjpai/detach
...
Fix-forward: avoid data race on detached thread deletion
6 years ago
Jan Tattermusch
f16340db0b
Merge pull request #18034 from annp1987/master
...
Add copyright headers
6 years ago
Prashant Jaikumar
64dbadace8
Debug flaky_network_test
...
Run the test with some tracing enabled to debug test flakes.
6 years ago
Jan Tattermusch
d0c42dec85
hotfix: download unreleased preview3
6 years ago
Nguyen Phuong An
0f7450b728
Add copyright headers
6 years ago
Vijay Pai
bf2b0e5220
Merge pull request #18117 from vjpai/use_result
...
Avoid unused result warning
6 years ago
Vijay Pai
d770e265ee
Fix-forward to avoid TSAN race on detached thread deletion
6 years ago
Prashant Jaikumar
98e0ff582a
Fix C++ bulid on Mac OS
6 years ago
Vijay Pai
e60c4fc034
Merge pull request #18114 from equinox1993/master
...
Remove extra semicolons after function definitions
6 years ago
Vijay Pai
301ed88a43
Avoid unused result warning
6 years ago
Vijay Pai
147c61b2a4
Exclude StartCall from starting callback counter value
6 years ago
Eric Gribkoff
bba348c302
Merge pull request #18112 from ericgribkoff/enter_graceful_shutdown
...
add enter_graceful_shutdown() to health service
6 years ago
Eric Gribkoff
af3d32214c
increase timeout
6 years ago
Soheil Hassas Yeganeh
2bb92f6a98
Merge pull request #18059 from soheilhy/worktree-cpp-atomic
...
Introduce more helper methods in gprpp/atomic.h
6 years ago
Vijay Pai
837055509e
Merge pull request #18113 from vjpai/cli_streaming_qps
...
Fix termination condition of streaming callback QPS tests
6 years ago
Yuwei Huang
3cbf4f50ea
Remove extra semicolons after function definitions
...
We are planning to enable -Wextra-semi flag in our project but some
header files in gRPC have extra semicolons that violates the check and
blocks us from enabling the flag.
This change removes unnecessary semicolons in the code. Note that having
semicolon after the GRPC_ABSTRACT macro technically also violates the
check, but it's fine for us since they are not used in public headers,
and it will be confusing to have lines ending only with GRPC_ABSTRACT,
so I keep them as-is.
6 years ago
Eric Gribkoff
93ef0db86b
use else in right spot
6 years ago
Vijay Pai
cdab1c260f
Fix termination condition of streaming callback QPS tests
6 years ago
Eric Gribkoff
ab5b28538f
use else:
6 years ago
Eric Gribkoff
fbc4ea7d8e
mark as experimental
6 years ago
Eric Gribkoff
a2495502df
add enter_graceful_shutdown() to health service
6 years ago
rmstar
22109adedd
Merge pull request #18082 from rmstar/cfstreamtestv2
...
Re-add cfstream_test
6 years ago
Yang Gao
b03e014ad8
Merge pull request #17308 from yang-g/shutdown
...
Move grpc_shutdown internals to a detached thread
6 years ago
rmstar
7bdcf1269c
Merge pull request #18099 from rmstar/readdflakynetworktest
...
Add flaky_network_test after fixing internal build failures.
6 years ago
Yang Gao
193293c590
Merge pull request #18110 from yang-g/malloc
...
Use malloc/free in leak checker
6 years ago
Eric Gribkoff
8952af5ad5
Merge pull request #18095 from ericgribkoff/non_blocking_stream
...
non-blocking server streaming for health service
6 years ago
Lidi Zheng
eaeda3618d
Check file existence correctly
6 years ago
Vijay Pai
51f0d35509
Merge pull request #18109 from vjpai/tsan_channelz
...
Use atm operations on gpr_atm variables
6 years ago
Lidi Zheng
cb3966b881
Use `tuple` instead of `list`/`map` combination
6 years ago
Lidi Zheng
61bea3891b
Another attempt to fix this problem cleanly
6 years ago
Lidi Zheng
e9c67f23f3
Add a new environment variable GRPC_BAZEL_BUILD
6 years ago
Lidi Zheng
48ccc2477c
Prevent the Bazel hack from affecting environment other than Bazel
6 years ago
Lidi Zheng
d209deb14b
Revert "Revert "Merge pull request #17644 from lidizheng/bzl-py3""
...
This reverts commit 7da0aacef2
.
6 years ago