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
7c6d1ad1
Commit
7c6d1ad1
authored
9 years ago
by
yang-g
Browse files
Options
Downloads
Patches
Plain Diff
add test for more plucks than allowed
parent
5ecd75fd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/core/surface/completion_queue_test.c
+59
-0
59 additions, 0 deletions
test/core/surface/completion_queue_test.c
with
59 additions
and
0 deletions
test/core/surface/completion_queue_test.c
+
59
−
0
View file @
7c6d1ad1
...
...
@@ -188,6 +188,64 @@ static void test_pluck_after_shutdown(void) {
grpc_completion_queue_destroy
(
cc
);
}
struct
thread_state
{
grpc_completion_queue
*
cc
;
void
*
tag
;
};
static
void
pluck_one
(
void
*
arg
)
{
struct
thread_state
*
state
=
arg
;
grpc_completion_queue_pluck
(
state
->
cc
,
state
->
tag
,
gpr_inf_future
(
GPR_CLOCK_REALTIME
),
NULL
);
}
static
void
test_too_many_plucks
(
void
)
{
grpc_event
ev
;
grpc_completion_queue
*
cc
;
void
*
tags
[
GRPC_MAX_COMPLETION_QUEUE_PLUCKERS
];
grpc_cq_completion
completions
[
GPR_ARRAY_SIZE
(
tags
)];
gpr_thd_id
thread_ids
[
GPR_ARRAY_SIZE
(
tags
)];
struct
thread_state
thread_states
[
GPR_ARRAY_SIZE
(
tags
)];
gpr_thd_options
thread_options
=
gpr_thd_options_default
();
grpc_exec_ctx
exec_ctx
=
GRPC_EXEC_CTX_INIT
;
unsigned
i
,
j
;
LOG_TEST
(
"test_too_many_plucks"
);
cc
=
grpc_completion_queue_create
(
NULL
);
gpr_thd_options_set_joinable
(
&
thread_options
);
for
(
i
=
0
;
i
<
GPR_ARRAY_SIZE
(
tags
);
i
++
)
{
tags
[
i
]
=
create_test_tag
();
for
(
j
=
0
;
j
<
i
;
j
++
)
{
GPR_ASSERT
(
tags
[
i
]
!=
tags
[
j
]);
}
thread_states
[
i
].
cc
=
cc
;
thread_states
[
i
].
tag
=
tags
[
i
];
gpr_thd_new
(
thread_ids
+
i
,
pluck_one
,
thread_states
+
i
,
&
thread_options
);
}
/* wait until all other threads are plucking */
gpr_sleep_until
(
GRPC_TIMEOUT_MILLIS_TO_DEADLINE
(
100
));
ev
=
grpc_completion_queue_pluck
(
cc
,
create_test_tag
(),
gpr_inf_future
(
GPR_CLOCK_REALTIME
),
NULL
);
GPR_ASSERT
(
ev
.
type
==
GRPC_QUEUE_TIMEOUT
);
for
(
i
=
0
;
i
<
GPR_ARRAY_SIZE
(
tags
);
i
++
)
{
grpc_cq_begin_op
(
cc
);
grpc_cq_end_op
(
&
exec_ctx
,
cc
,
tags
[
i
],
1
,
do_nothing_end_completion
,
NULL
,
&
completions
[
i
]);
}
for
(
i
=
0
;
i
<
GPR_ARRAY_SIZE
(
tags
);
i
++
)
{
gpr_thd_join
(
thread_ids
[
i
]);
}
shutdown_and_destroy
(
cc
);
grpc_exec_ctx_finish
(
&
exec_ctx
);
}
#define TEST_THREAD_EVENTS 10000
typedef
struct
test_thread_options
{
...
...
@@ -357,6 +415,7 @@ int main(int argc, char **argv) {
test_cq_end_op
();
test_pluck
();
test_pluck_after_shutdown
();
test_too_many_plucks
();
test_threading
(
1
,
1
);
test_threading
(
1
,
10
);
test_threading
(
10
,
1
);
...
...
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