|
|
|
# Copyright 2021 gRPC authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
load("//bazel:grpc_build_system.bzl", "grpc_cc_test", "grpc_package")
|
|
|
|
|
|
|
|
licenses(["notice"])
|
|
|
|
|
|
|
|
grpc_package(name = "test/core/promise")
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "poll_test",
|
|
|
|
srcs = ["poll_test.cc"],
|
|
|
|
external_deps = ["gtest"],
|
|
|
|
language = "c++",
|
|
|
|
uses_polling = False,
|
|
|
|
deps = [
|
|
|
|
"//:poll",
|
|
|
|
"//test/core/util:grpc_suppressions",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "promise_test",
|
|
|
|
srcs = ["promise_test.cc"],
|
|
|
|
external_deps = ["gtest"],
|
|
|
|
language = "c++",
|
|
|
|
uses_polling = False,
|
|
|
|
deps = [
|
|
|
|
"//:promise",
|
|
|
|
"//test/core/util:grpc_suppressions",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
# Why promise_map_test and not map_test?
|
|
|
|
# third_party/benchmark defines a map_test in its cmakefile, and we depend
|
|
|
|
# on that from our cmakefile, and cmake wants to have a flat namespace to
|
|
|
|
# deal with xcode/visual studio limitations... sooo... promise_map_test it
|
|
|
|
# is.
|
|
|
|
name = "promise_map_test",
|
|
|
|
srcs = ["map_test.cc"],
|
|
|
|
external_deps = ["gtest"],
|
|
|
|
language = "c++",
|
|
|
|
uses_polling = False,
|
|
|
|
deps = [
|
|
|
|
"//:map",
|
|
|
|
"//:promise",
|
|
|
|
"//test/core/util:grpc_suppressions",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "promise_factory_test",
|
|
|
|
srcs = ["promise_factory_test.cc"],
|
|
|
|
external_deps = [
|
|
|
|
"gtest",
|
|
|
|
"absl/functional:bind_front",
|
|
|
|
],
|
|
|
|
language = "c++",
|
|
|
|
uses_polling = False,
|
|
|
|
deps = [
|
|
|
|
"//:capture",
|
|
|
|
"//:promise",
|
|
|
|
"//:promise_factory",
|
|
|
|
"//test/core/util:grpc_suppressions",
|
|
|
|
],
|
|
|
|
)
|