aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/fuzzers
Commit message (Collapse)AuthorAge
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Fix heap use-after-free bug in chttp2 reported by fuzzerGravatar Yash Tibrewal2018-02-08
|
* regenerate metadataGravatar Muxi Yan2018-02-06
|
* Replace message/deflate,gzip with deflate,gzipGravatar Muxi Yan2018-02-06
|
* Merge remote-tracking branch 'upstream/master' into ↵Gravatar Muxi Yan2018-01-19
|\ | | | | | | fix-stream-compression-config-interface
| * Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
| |
| * Add fuzzed example that found this crashGravatar Craig Tiller2018-01-16
| |
| * Also stop processing input streamGravatar Craig Tiller2018-01-16
| |
| * Fix issue whereby fuzzer creates infinitely deep creds (since this is not ↵Gravatar Craig Tiller2018-01-16
| | | | | | | | actually interesting)
* | Merge remote-tracking branch 'upstream/master' into ↵Gravatar Muxi Yan2017-12-08
|\| | | | | | | fix-stream-compression-config-interface
* | Merge remote-tracking branch 'upstream/master' into ↵Gravatar Muxi Yan2017-12-06
|\ \ | | | | | | | | | fix-stream-compression-config-interface
* \ \ Merge commit 'b0bad8f' into fix-stream-compression-config-interfaceGravatar Muxi Yan2017-12-06
|\ \ \
* \ \ \ Merge commit 'b0bad8f^' into fix-stream-compression-config-interfaceGravatar Muxi Yan2017-12-06
|\ \ \ \
* | | | | clang-formatGravatar Muxi Yan2017-12-06
| | | | |
| | | | * Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | |/ | | | | | | | | | | | | removed""
| | | * Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
| | | |
| | | * Merge master into execctxGravatar Yash Tibrewal2017-12-05
| | | |\
| | | | * Merge remote-tracking branch 'upstream/master' into server_connection_timeoutGravatar Mark D. Roth2017-12-01
| | | | |\
| | | * | \ Merge master after no Extern C changesGravatar Yash Tibrewal2017-11-30
| | | |\ \ \ | | | | | |/ | | | | |/|
| | | * | | Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| | | | | |
| | | * | | 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
| | | | | |
| | | | | * Fix some dumb typos.Gravatar Mark D. Roth2017-11-20
| | | | | |
| | | | * | Fix test cert buildGravatar ncteisen2017-11-20
| | | | | |
| | | | * | 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 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
| | |/ | |/|
| * | Merge masterGravatar Yash Tibrewal2017-11-06
| |\ \
| | * | Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | | |
| * | | 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
| | | |
| * | | 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.
* | 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.
* | Merge remote-tracking branch 'upstream/master' into ↵Gravatar Muxi Yan2017-10-06
|\| | | | | | | fix-stream-compression-config-interface
* | Make the names of compression algorithms backwards compatible at surface APIGravatar Muxi Yan2017-10-06
| |