aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
Commit message (Collapse)AuthorAge
* Unpin pip version installed in build_python.shGravatar Matt Kwong2018-04-06
| | | | | | | Fix for issue #14815. Pinning to 9.0.3 doesn't work because pip fails to recognize that as a valid version. Newer versions of pip have a fallback on macOS to use SecureTransport instead of their outdated OpenSSL that doesn't support TLSv1.2.
* Merge pull request #14903 from jiangtaoli2016/alts_interop_testsGravatar Jiangtao Li2018-04-04
|\ | | | | Update interop test script to support ALTS
| * Update interop test script to support ALTSGravatar jiangtaoli20162018-04-03
| |
* | Merge pull request #14864 from jtattermusch/distribtest_with_add_subdirectoryGravatar Jan Tattermusch2018-04-03
|\ \ | | | | | | Add distribtest for grpc being added with cmake's add_subdirectory()
* | | Revert "Let cronet use grpc_cronet_registry_plugin"Gravatar Muxi Yan2018-03-30
| |/ |/|
* | Merge pull request #13634 from hassox/ruby-module-nameGravatar apolcyn2018-03-29
|\ \ | | | | | | Updates the ruby generator RubyTypeOf to correctly account for underscores in packages
* | | Fix authority fuzzing failuresGravatar David Garcia Quintas2018-03-29
| | |
* | | Merge pull request #14734 from markdroth/c++_retry_throttleGravatar Mark D. Roth2018-03-29
|\ \ \ | | | | | | | | Convert retry throttle code to C++ and add tests.
| | | * add distribtest for grpc being added with cmake add_subdirectoryGravatar Jan Tattermusch2018-03-29
| |_|/ |/| |
* | | Merge pull request #14822 from jtattermusch/cmake_distribtest_externalprojectGravatar Jan Tattermusch2018-03-29
|\ \ \ | | | | | | | | cmake "superbuild" example using ExternalProjects_Add
* \ \ \ Merge pull request #14809 from Everysick/memsize-unavailableGravatar apolcyn2018-03-28
|\ \ \ \ | | | | | | | | | | Use GRPC_RB_MEMSIZE_UNAVAILABLE in grpc_rb_md_ary_data_type
| * | | | Add test for verifying to get memory usage in client requestGravatar everysick2018-03-29
| | | | |
* | | | | Merge pull request #14615 from dgquintas/authority_headerGravatar David G. Quintas2018-03-28
|\ \ \ \ \ | | | | | | | | | | | | Secure channels: use the right authority
* \ \ \ \ \ Merge pull request #14841 from jtattermusch/cleanup_sanityGravatar Jan Tattermusch2018-03-28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Don't run sanity tests as part of multilang testsuite.
| | | | * | | cmake "superbuild" example using externalprojectsGravatar Jan Tattermusch2018-03-28
| |_|_|/ / / |/| | | | |
* | | | | | Merge pull request #14561 from kpayson64/gevent_2Gravatar kpayson642018-03-28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Initial Gevent Compatibility
| | | | | * | Convert retry throttle code to C++ and add tests.Gravatar Mark D. Roth2018-03-28
| |_|_|_|/ / |/| | | | |
| | * | | | cleanup configuration for linux sanity testsGravatar Jan Tattermusch2018-03-28
| |/ / / / |/| | | |
| * | | | Initial gevent supportGravatar kpayson642018-03-27
| | | | | | | | | | | | | | | | | | | | | | | | | Because some cpp code ends up leaking into cython, we change the cython generator to generate cpp code.
| | * | | Merge branch 'master' of github.com:grpc/grpc into authority_headerGravatar David Garcia Quintas2018-03-27
| | |\ \ \ | |_|/ / / |/| | | |
* | | | | Merge pull request #14810 from muxi/cronet-plugin-registry-followupGravatar Muxi Yan2018-03-27
|\ \ \ \ \ | | | | | | | | | | | | Add more plugins to be used by grpc_cronet
| | | * | | more commentsGravatar David Garcia Quintas2018-03-27
| | | | | |
* | | | | | Merge pull request #14816 from ZhouyihaiDing/pecl_extensionGravatar Jan Tattermusch2018-03-27
|\ \ \ \ \ \ | | | | | | | | | | | | | | PHP: add script for running distrib tests on macos
| | | | * | | rest of pr commentsGravatar David Garcia Quintas2018-03-26
| | | | | | |
| | | | | | * Updates the ruby generator RubyAsType to correctly account for underscores ↵Gravatar Daniel Neighman2018-03-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in packages Prior to this change, when the ruby generator tried to reference an entity that was not part of the same package (or a direct parent package) and the package contains underscores, the result would simply uppercase the first character. It should however uppercase each letter that proceeds an underscore and remove underscores. i.e. ``` package my_package.service; import "my_package/data.proto"; service MyService { rpc Test (data.Request) returns data.Response {} } ``` Was ```ruby # ... rpc :Test, My_package::Data::REquest, My_package::Data::Response # ... ``` Should be: ```ruby # ... rpc :Test, MyPackage::Data::REquest, My_package::Data::Response # ... ```
| | | | * | | added call_host_override testGravatar David Garcia Quintas2018-03-26
| | | | | | |
* | | | | | | Merge pull request #13290 from apolcyn/cares_address_sorting_master_cGravatar apolcyn2018-03-26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add address sorting submodule for use in c-ares wrapper
| | * | | | | | PHP: split script for running distrib tests on different systemGravatar ZhouyihaiDing2018-03-26
| |/ / / / / / |/| | | | | |
* | | | | | | Merge pull request #14652 from ghostwriternr/jobset-loggingGravatar Nathaniel Manista2018-03-26
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | Make logging after success in jobset more apparent.
| | | * | | | Add more plugins to be used by grpc_cronetGravatar Muxi Yan2018-03-23
| |_|/ / / / |/| | | | |
| | | | * | Factor out grpc_add_default_authority_if_not_presentGravatar David Garcia Quintas2018-03-23
| | | | | |
| | | | * | Merge branch 'master' of github.com:grpc/grpc into authority_headerGravatar David Garcia Quintas2018-03-22
| | | | |\ \ | |_|_|_|/ / |/| | | | |
* | | | | | Merge pull request #14321 from grpc/revert-13813-disable_low_thread_countGravatar Jan Tattermusch2018-03-22
|\ \ \ \ \ \ | | | | | | | | | | | | | | Revert "Disabled the json_run_localhost:*_low_thread_count family of tests"
| | | | | * \ Merge branch 'master' of github.com:grpc/grpc into authority_headerGravatar David Garcia Quintas2018-03-21
| | | | | |\ \ | |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge pull request #14751 from ncteisen/channel-tracingGravatar Noah Eisen2018-03-21
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | [Fix Forward]: Channel Tracing Implementation; Part 1
| | | | | * | Merge branch 'master' of github.com:grpc/grpc into authority_headerGravatar David Garcia Quintas2018-03-21
| | | | | |\ \ | |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge pull request #14758 from muxi/cronet-plugin-registryGravatar Muxi Yan2018-03-21
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Let cronet use grpc_cronet_registry_plugin
* \ \ \ \ \ \ \ Merge pull request #14766 from murgatroid99/node_pure_js_interop_unskipGravatar Michael Lumish2018-03-21
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Re-enable some tests for the Node Pure JS interop client
| | | | | | * | | Put address_sorting's public header under its own directory. Also addGravatar Alex Polcyn2018-03-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test_only to sort function used in test.
| | | | | | * | | Add address sorting submodule for use in c-ares wrapperGravatar Alexander Polcyn2018-03-20
| |_|_|_|_|/ / / |/| | | | | | |
| * | | | | | | Re-enable some tests for the Node Pure JS interop clientGravatar murgatroid992018-03-20
| | | | | | | |
| | * | | | | | Add message size filter and deadline filter pluginsGravatar Muxi Yan2018-03-20
| | | | | | | |
| | * | | | | | Let cronet use grpc_cronet_registry_pluginGravatar Muxi Yan2018-03-20
| | | | | | | |
* | | | | | | | regenerate projectsGravatar Ruslan Nigmatullin2018-03-20
|/ / / / / / /
| | | * | | | regenerate projectsGravatar Jan Tattermusch2018-03-20
| | | | | | |
| | | * | | | Revert "Disabled the json_run_localhost:*_low_thread_count family of tests"Gravatar Jan Tattermusch2018-03-20
| |_|/ / / / |/| | | | |
* | | | | | longer timeout for protoc artifacts on macosGravatar Jan Tattermusch2018-03-20
| | | | | |
| | * | | | Revert "Revert "Channel Tracing Implementation; Part 1""Gravatar ncteisen2018-03-19
| |/ / / / |/| | | | | | | | | | | | | | This reverts commit f2bea3725f8218777268decfd37c7b543f839d9f.
* | | | | Revert "Channel Tracing Implementation; Part 1"Gravatar Noah Eisen2018-03-19
| | | | |
* | | | | Merge pull request #13883 from ncteisen/channel-tracingGravatar Noah Eisen2018-03-16
|\ \ \ \ \ | | | | | | | | | | | | Channel Tracing Implementation; Part 1