diff options
author | Craig Tiller <ctiller@google.com> | 2016-04-25 16:31:15 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-04-25 16:31:15 -0700 |
commit | 11c83e905639ab63252e7e2bf130484771f2577a (patch) | |
tree | 81eb851578b626038a27754add27a6b7fbfcce02 /tools/buildgen/plugins | |
parent | 482ce5e3a4c8103dbdd20f02c9223b821075dc00 (diff) |
Dont run fuzzer outputs on windows, mac (save some CPU)
Diffstat (limited to 'tools/buildgen/plugins')
-rw-r--r-- | tools/buildgen/plugins/make_fuzzer_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildgen/plugins/make_fuzzer_tests.py b/tools/buildgen/plugins/make_fuzzer_tests.py index e8e1bd0aa6..9d0006973a 100644 --- a/tools/buildgen/plugins/make_fuzzer_tests.py +++ b/tools/buildgen/plugins/make_fuzzer_tests.py @@ -50,8 +50,8 @@ def mako_plugin(dictionary): 'name': new_target['name'], 'args': [fn], 'exclude_configs': [], - 'platforms': ['linux', 'mac', 'windows', 'posix'], - 'ci_platforms': ['linux', 'mac', 'windows', 'posix'], + 'platforms': ['linux'], + 'ci_platforms': ['linux'], 'flaky': False, 'language': 'c', 'cpu_cost': 0.1, |