aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
Commit message (Collapse)AuthorAge
...
| | | | | | | * Remove TLS_NO_SUPPORT and always use GPR_TLS. Reorder statements in ↵Gravatar Yash Tibrewal2017-11-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc_init and grpc_shutdown. Add grpc_init and grpc_shutdown in failing test/cpp tests
| | | | | | | * Fix tests to call grpc_init and grpc_shutdown before using exec_ctxGravatar Yash Tibrewal2017-11-28
| | | | | | | |
| | | | * | | | Fix the fuzzersGravatar ncteisen2017-11-28
| | | | | | | |
| | | | * | | | Remove uneeded header, fix unused warnGravatar ncteisen2017-11-28
| | | | | | | |
| | | | | | | * A few src/core fixes due to missing exec_ctx_finishGravatar Yash Tibrewal2017-11-21
| | | | | | | |
| | | | | | | * Merge masterGravatar Yash Tibrewal2017-11-21
| | | | | | | |\ | | | | | | |_|/ | | | | | |/| |
| | | | * | | | Merge branch 'master' of https://github.com/grpc/grpc into no-more-extern-cGravatar ncteisen2017-11-21
| | | | |\| | |
| | | | | | * | Merge remote-tracking branch 'upstream/master' into server_connection_timeoutGravatar Mark D. Roth2017-11-20
| | | | | | |\ \ | | | | | | |/ / | | | | | |/| |
| | | | | | * | Fix some dumb typos.Gravatar Mark D. Roth2017-11-20
| | | | | | | |
| | | | * | | | Fix test cert buildGravatar ncteisen2017-11-20
| | | | | | | |
| | | | | * | | Attempt to fix TSANGravatar ncteisen2017-11-17
| | | | |/ / / | | | |/| | |
| | | | * | | Fix windows buildGravatar ncteisen2017-11-17
| | | | | | |
| | | | * | | clang fmtGravatar ncteisen2017-11-17
| | | | | | |
| | | | * | | Un extern the fuzzersGravatar ncteisen2017-11-17
| | | | | | |
| | | | * | | Remove all extern CGravatar ncteisen2017-11-17
| | | |/ / /
| | | | | * Merge masterGravatar Yash Tibrewal2017-11-16
| | | | | |\ | | | | |_|/ | | | |/| |
| | | | * | Merge remote-tracking branch 'upstream/master' into server_connection_timeoutGravatar Mark D. Roth2017-11-15
| | | | |\ \ | | | | |/ / | | | |/| |
| | | | | * Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | | | | | | | | | | | | | | | | | ExecCtx and some minor changes
| | | | | * Address some PR commentsGravatar Yash Tibrewal2017-11-14
| | | | | |
| | | * | | clang-format after nullptr changesGravatar Craig Tiller2017-11-10
| | | | | |
| | | * | | Enable clang-tidy as a sanity check, fix up all known failuresGravatar Craig Tiller2017-11-10
| | |/ / /
| | | | * Merge masterGravatar Yash Tibrewal2017-11-09
| | | | |\ | | | |_|/ | | |/| |
| | | | * Merge with masterGravatar Yash Tibrewal2017-11-09
| | | | |\
| | | * | | Add notify_on_receive_settings closure to chttp2 transport.Gravatar Mark D. Roth2017-11-09
| | | | | |
| | | * | | Bool-ify is_client param.Gravatar Mark D. Roth2017-11-09
| | |/ / /
| | * | / Remove include from end2end data files and add extern C to each definition ↵Gravatar Yash Tibrewal2017-11-07
| | | |/ | | |/| | | | | | | | | instead
| | * | MacOS uses end2end tests. therefore extern C neededGravatar Yash Tibrewal2017-11-07
| | | |
| | * | No Clang on end2end generated filesGravatar Yash Tibrewal2017-11-06
| | | |
| | * | Merge masterGravatar Yash Tibrewal2017-11-06
| | |\ \
| | | * \ Merge github.com:grpc/grpc into 50Gravatar Craig Tiller2017-11-03
| | | |\ \ | | |_|/ / | |/| | |
| | | * | Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | | | |
| | * | | objC needs C linkageGravatar Yash Tibrewal2017-11-01
| | | | |
| | * | | LLVMfuzzer extern CGravatar Yash Tibrewal2017-10-31
| | | | |
| | * | | changes for bazel and test certificatesGravatar Yash Tibrewal2017-10-31
| | | | |
| | * | | BUILD changes. test languauge to C++Gravatar Yash Tibrewal2017-10-31
| | | | |
| | * | | windows linker errorsGravatar Yash Tibrewal2017-10-31
| | | | |
| | * | | some BUILD changes and designated initializersGravatar Yash Tibrewal2017-10-30
| | | | |
| | * | | Changes to build other platformsGravatar Yash Tibrewal2017-10-30
| | | | |
| * | | | Fix a bunch of dumb service config parsing bugs.Gravatar Mark D. Roth2017-10-26
| | |/ / | |/| |
| | * | Remove unnecessary extern CsGravatar Yash Tibrewal2017-10-25
| | | |
| | * | rename all test core files to cc and a lot of C++ style conversionsGravatar Yash Tibrewal2017-10-25
| |/ /
| | * Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
| |/ | | | | | | | | | | | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
| * Review feedbackGravatar Craig Tiller2017-10-13
| |
| * Merge branch 'chttp2_timer' into timerGravatar Craig Tiller2017-10-12
| |\
| * | Be consistent with JavaGravatar Craig Tiller2017-10-12
| | |
| | * Add flow control to inproc transport so send needs a matching recv; fixGravatar Vijay Pai2017-10-11
| | | | | | | | | | | | some tests that assumed some sends could always go out
| * | Fix testsGravatar Craig Tiller2017-10-11
| |/
* | Revert changes to "identity" "deflate" "gzip" "stream-gzip" compression ↵Gravatar Muxi Yan2017-10-11
| | | | | | | | | | | | | | algorithm names at surface API This reverts commit 63602748415fb836afd7a9685fbe5e85bf5ebfed. This reverts commit 33d7a7aa5a7ff5230a654390779e5da56a7639f8.
| * Move h2_ssl_cert_test out of end2end fixtures, use gtestGravatar Vijay Pai2017-10-11
| |
* | Merge remote-tracking branch 'upstream/master' into ↵Gravatar Muxi Yan2017-10-06
|\| | | | | | | fix-stream-compression-config-interface