diff options
author | Noah Eisen <ncteisen@gmail.com> | 2017-03-10 10:01:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-10 10:01:40 -0800 |
commit | eeaa977f6ae0a489f271007fe75c768ab5e556e3 (patch) | |
tree | e88adfa3eb1dd3c475b5cb393fbd5f07cee7f2ee | |
parent | 78603dde445d532ccf85d035d7c257d1c02f7e35 (diff) | |
parent | 1a882cfc4a193f7bc15e2e47b4e2bcf43c105440 (diff) |
Merge pull request #10050 from ncteisen/banned-from-club-penguin
Add More Core Banned Functions
-rwxr-xr-x | tools/run_tests/sanity/core_banned_functions.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/run_tests/sanity/core_banned_functions.py b/tools/run_tests/sanity/core_banned_functions.py index afac10bf80..6d9be2e5d4 100755 --- a/tools/run_tests/sanity/core_banned_functions.py +++ b/tools/run_tests/sanity/core_banned_functions.py @@ -42,6 +42,12 @@ BANNED_EXCEPT = { 'grpc_slice_buffer_reset_and_unref(': ['src/core/lib/slice/slice_buffer.c'], 'grpc_slice_ref(': ['src/core/lib/slice/slice.c'], 'grpc_slice_unref(': ['src/core/lib/slice/slice.c'], + 'grpc_error_create(': ['src/core/lib/iomgr/error.c'], + 'grpc_error_ref(': ['src/core/lib/iomgr/error.c'], + 'grpc_error_unref(': ['src/core/lib/iomgr/error.c'], + 'grpc_os_error(': ['src/core/lib/iomgr/error.c'], + 'grpc_wsa_error(': ['src/core/lib/iomgr/error.c'], + 'grpc_log_if_error(': ['src/core/lib/iomgr/error.c'], } errors = 0 |