diff options
author | Craig Tiller <ctiller@google.com> | 2017-10-11 09:23:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 09:23:50 -0700 |
commit | 58e5d90e20e6b5f93748f3b5a32c64e86f00e0c6 (patch) | |
tree | eb12242fa59f2c9b81737579f662062b210f5b75 /templates/tools/run_tests/generated | |
parent | 6e3245c99c72f9fbe72a45091d99243ea7b094f6 (diff) | |
parent | 35c10cb6da8ea388e7c58ec833c205ff301f0f31 (diff) |
Merge pull request #12863 from ctiller/no-pollers-for-you
Set gpr_mpscq_test to not use polling, make that bit work again
Diffstat (limited to 'templates/tools/run_tests/generated')
-rw-r--r-- | templates/tools/run_tests/generated/tests.json.template | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/tools/run_tests/generated/tests.json.template b/templates/tools/run_tests/generated/tests.json.template index 10ab2e445a..0c9f0a14c4 100644 --- a/templates/tools/run_tests/generated/tests.json.template +++ b/templates/tools/run_tests/generated/tests.json.template @@ -13,7 +13,8 @@ "exclude_iomgrs": tgt.get("exclude_iomgrs", []), "args": tgt.get("args", []), "flaky": tgt.flaky, - "cpu_cost": tgt.get("cpu_cost", 1.0)} + "cpu_cost": tgt.get("cpu_cost", 1.0), + "uses_polling": tgt.get("uses_polling", True)} timeout_seconds = tgt.get("timeout_seconds", None) if timeout_seconds: out['timeout_seconds'] = timeout_seconds |