Skip to content

Commit 7ab7ba7

Browse files
options: allow GODEBUG env variable (#2874)
cf golang/go#49075 Co-authored-by: Oliver Chang <oliverchang@users.noreply.github.com>
1 parent 1af05d6 commit 7ab7ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/bot/fuzzers/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
OPTIONS_FILE_EXTENSION = '.options'
2929

3030
# Whitelist for env variables .options files can set.
31-
ENV_VAR_WHITELIST = set([afl_constants.DONT_DEFER_ENV_VAR])
31+
ENV_VAR_WHITELIST = {afl_constants.DONT_DEFER_ENV_VAR, 'GODEBUG'}
3232

3333

3434
class FuzzerOptionsException(Exception):

0 commit comments

Comments
 (0)