aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-02 12:51:53 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-02 12:51:53 -0700
commite398fa2b5264d855ea81c160bf84ec5bd3320237 (patch)
tree6aa4e704cc5c3b64f42aaa629eaa56921c82fe13 /test/core
parent6f4321604626b5ab9de064b34ace1ef49934e7ea (diff)
Make this test harder to pass
Diffstat (limited to 'test/core')
-rw-r--r--test/core/end2end/tests/simple_request.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/core/end2end/tests/simple_request.c b/test/core/end2end/tests/simple_request.c
index b77541660b..2246ad540c 100644
--- a/test/core/end2end/tests/simple_request.c
+++ b/test/core/end2end/tests/simple_request.c
@@ -203,6 +203,9 @@ static void test_invoke_10_simple_requests(grpc_end2end_test_config config) {
}
void grpc_end2end_tests(grpc_end2end_test_config config) {
- test_invoke_simple_request(config);
+ int i;
+ for (i = 0; i < 10; i++) {
+ test_invoke_simple_request(config);
+ }
test_invoke_10_simple_requests(config);
}