Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
1e75dc8c
Commit
1e75dc8c
authored
7 years ago
by
Nicolas "Pixel" Noble
Browse files
Options
Downloads
Patches
Plain Diff
Add end2end_test_lib.
parent
fec014b9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/cpp/end2end/BUILD
+12
-2
12 additions, 2 deletions
test/cpp/end2end/BUILD
with
12 additions
and
2 deletions
test/cpp/end2end/BUILD
+
12
−
2
View file @
1e75dc8c
...
@@ -31,6 +31,8 @@ licenses(["notice"]) # 3-clause BSD
...
@@ -31,6 +31,8 @@ licenses(["notice"]) # 3-clause BSD
load
(
"
//bazel:grpc_build_system.bzl
"
,
"
grpc_cc_library
"
,
"
grpc_cc_test
"
)
load
(
"
//bazel:grpc_build_system.bzl
"
,
"
grpc_cc_library
"
,
"
grpc_cc_test
"
)
package
(
default_visibility
=
[
"
//visibility:public
"
])
# Allows external users to implement end2end tests.
grpc_cc_library
(
grpc_cc_library
(
name
=
"
test_service_impl
"
,
name
=
"
test_service_impl
"
,
srcs
=
[
"
test_service_impl.cc
"
],
srcs
=
[
"
test_service_impl.cc
"
],
...
@@ -102,9 +104,10 @@ grpc_cc_test(
...
@@ -102,9 +104,10 @@ grpc_cc_test(
],
],
)
)
grpc_cc_
test
(
grpc_cc_
library
(
name
=
"
end2end_test
"
,
name
=
"
end2end_test
_lib
"
,
srcs
=
[
"
end2end_test.cc
"
],
srcs
=
[
"
end2end_test.cc
"
],
testonly
=
True
,
deps
=
[
deps
=
[
"
:test_service_impl
"
,
"
:test_service_impl
"
,
"
//:gpr
"
,
"
//:gpr
"
,
...
@@ -122,6 +125,13 @@ grpc_cc_test(
...
@@ -122,6 +125,13 @@ grpc_cc_test(
],
],
)
)
grpc_cc_test
(
name
=
"
end2end_test
"
,
deps
=
[
"
:end2end_test_lib
"
],
)
grpc_cc_test
(
grpc_cc_test
(
name
=
"
filter_end2end_test
"
,
name
=
"
filter_end2end_test
"
,
srcs
=
[
"
filter_end2end_test.cc
"
],
srcs
=
[
"
filter_end2end_test.cc
"
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment