Added readability-duplicate-include (#31608)

* Added readability-duplicate-include

* Fix

* format
pull/31617/head
Esun Kim 2 years ago committed by GitHub
parent be85608ad1
commit 26bc68c4af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .clang-tidy
  2. 1
      src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc
  3. 2
      test/core/address_utils/sockaddr_utils_test.cc
  4. 1
      test/core/end2end/fixtures/h2_full+trace.cc
  5. 2
      test/core/event_engine/posix/posix_engine_listener_utils_test.cc
  6. 2
      test/core/event_engine/posix/tcp_posix_socket_utils_test.cc
  7. 1
      test/core/security/channel_creds_registry_test.cc
  8. 1
      test/core/transport/binder/end2end/binder_server_test.cc
  9. 1
      test/core/transport/binder/endpoint_binder_pool_test.cc

@ -118,6 +118,7 @@ Checks: '-*,
readability-container-size-empty,
readability-delete-null-pointer,
readability-deleted-default,
readability-duplicate-include,
readability-function-size,
readability-inconsistent-declaration-parameter-name,
readability-misleading-indentation,

@ -42,7 +42,6 @@
#include "src/core/lib/config/core_configuration.h"
#include "src/core/lib/gprpp/orphanable.h"
#include "src/core/lib/iomgr/error.h"
#include "src/core/lib/iomgr/port.h"
#include "src/core/lib/iomgr/resolved_address.h"
#include "src/core/lib/resolver/resolver.h"
#include "src/core/lib/resolver/resolver_factory.h"

@ -35,8 +35,6 @@
#include <string>
#include <gtest/gtest.h>
#include <grpc/support/log.h>
#include "src/core/lib/address_utils/parse_address.h"

@ -36,7 +36,6 @@
#include "src/core/lib/debug/trace.h"
#include "src/core/lib/gprpp/global_config_generic.h"
#include "src/core/lib/gprpp/host_port.h"
#include "src/core/lib/iomgr/port.h"
#include "test/core/end2end/end2end_tests.h"
#include "test/core/util/port.h"
#include "test/core/util/test_config.h"

@ -33,8 +33,6 @@
#include <ifaddrs.h>
#include <gtest/gtest.h>
#include <grpc/support/log.h>
#include "src/core/lib/event_engine/channel_args_endpoint_config.h"

@ -42,8 +42,6 @@
#include <sys/un.h>
#endif
#include <gtest/gtest.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>

@ -24,7 +24,6 @@
#include <grpc/grpc.h>
#include "src/core/lib/config/core_configuration.h"
#include "src/core/lib/security/credentials/channel_creds_registry.h"
#include "src/core/lib/security/credentials/fake/fake_credentials.h"
#include "test/core/util/test_config.h"

@ -28,7 +28,6 @@
#include <grpcpp/security/binder_security_policy.h>
#include "src/core/ext/transport/binder/client/channel_create_impl.h"
#include "src/core/ext/transport/binder/server/binder_server.h"
#include "test/core/transport/binder/end2end/fake_binder.h"
#include "test/core/util/test_config.h"
#include "test/cpp/end2end/test_service_impl.h"

@ -24,7 +24,6 @@
#include "absl/memory/memory.h"
#include "src/core/ext/transport/binder/client/endpoint_binder_pool.h"
#include "test/core/transport/binder/mock_objects.h"
#include "test/core/util/test_config.h"

Loading…
Cancel
Save