Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EventEngine] Refactoring the EventEngine Test Suite: Part 1 #32127

Merged
merged 22 commits into from
Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
54 changes: 30 additions & 24 deletions CMakeLists.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bazel/grpc_build_system.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data
"linkstatic": linkstatic,
}

if "grpc-fuzzer" not in tags:
if "grpc-fuzzer" not in tags and "no_test_ios" not in tags:
ios_cc_test(
name = name,
srcs = srcs,
Expand Down
93 changes: 53 additions & 40 deletions build_autogenerated.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions test/core/event_engine/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,25 @@ grpc_cc_test(
"//src/core:iomgr_port",
],
)

grpc_cc_library(
name = "event_engine_test_utils",
testonly = True,
srcs = ["event_engine_test_utils.cc"],
hdrs = ["event_engine_test_utils.h"],
external_deps = [
"absl/status",
"absl/status:statusor",
"absl/strings",
"absl/time",
],
deps = [
"//:gpr",
"//:grpc_unsecure",
"//src/core:channel_args_endpoint_config",
"//src/core:event_engine_tcp_socket_utils",
"//src/core:memory_quota",
"//src/core:notification",
"//src/core:time",
],
)