We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentad0a88f commit9557bb1Copy full SHA for 9557bb1
src/ffpuppet/helpers.py
@@ -331,9 +331,10 @@ def prepare_environment(
331
env.pop("MOZ_CRASHREPORTER_NO_REPORT",None)
332
env.pop("MOZ_CRASHREPORTER_SHUTDOWN",None)
333
334
-#automaticallysymbolize traces when TSan is in use
+# symbolize traces in process on Windows or when TSan is in use
335
# it is required for runtime TSan suppressions
336
-env=_configure_sanitizers(env,sanitizer_log,symbolize=sanitizer=="tsan")
+in_process=IS_WINDOWSorsanitizer=="tsan"
337
+env=_configure_sanitizers(env,sanitizer_log,symbolize=in_process)
338
# filter environment to avoid leaking sensitive information
339
return {k:vfork,vinenv.items()if"_SECRET"notink}
340