Skip to content
Snippets Groups Projects
Commit f987e3af authored by Alistair Veitch's avatar Alistair Veitch
Browse files

Fix for long-running tsan test

parent 7f5b3285
No related branches found
No related tags found
No related merge requests found
......@@ -81,9 +81,9 @@ static void worker_thread(void *arg) {
gpr_uint32 cpu;
int r = 12345678;
int i, j;
for (i = 0; i < 1000; i++) {
for (i = 0; i < 1000 / GRPC_TEST_SLOWDOWN_FACTOR; i++) {
/* run for a bit - just calculate something random. */
for (j = 0; j < 1000000; j++) {
for (j = 0; j < 1000000 / GRPC_TEST_SLOWDOWN_FACTOR; j++) {
r = (r * 17) & ((r - i) | (r * i));
}
cpu = gpr_cpu_current_cpu();
......
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