Skip to content
Snippets Groups Projects
Commit e9ba66e8 authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8555 from ctiller/buffer_pools_for_realsies

More Windows Fixes
parents 1e171184 f4050350
No related branches found
No related tags found
No related merge requests found
......@@ -99,12 +99,16 @@ static void end_test(grpc_end2end_test_fixture *f) {
static gpr_slice generate_random_slice() {
size_t i;
static const char chars[] = "abcdefghijklmnopqrstuvwxyz1234567890";
char output[1024 * 1024];
for (i = 0; i < GPR_ARRAY_SIZE(output) - 1; ++i) {
char *output;
const size_t output_size = 1024 * 1024;
output = gpr_malloc(output_size);
for (i = 0; i < output_size - 1; ++i) {
output[i] = chars[rand() % (int)(sizeof(chars) - 1)];
}
output[GPR_ARRAY_SIZE(output) - 1] = '\0';
return gpr_slice_from_copied_string(output);
output[output_size - 1] = '\0';
gpr_slice out = gpr_slice_from_copied_string(output);
gpr_free(output);
return out;
}
void resource_quota_server(grpc_end2end_test_config config) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment