8000 bpo-35214: Skip test_io tests that'd cause a huge malloc under msan by gpshead · Pull Request #11385 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-35214: Skip test_io tests that'd cause a huge malloc under msan #11385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 31, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
typo fix
  • Loading branch information
gpshead authored Dec 31, 2018
commit a58f9f06007fe600825d2e7a155acedf7da0ce3f
2 changes: 1 addition & 1 deletion Lib/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class EmptyStruct(ctypes.Structure):
_cflags = sysconfig.get_config_var('CFLAGS') or ''
_config_args = sysconfig.get_config_var('CONFIG_ARGS') or ''
MEMORY_SANITIZER = (
'-fsanitizer=memory' in _cflags or
'-fsanitize=memory' in _cflags or
'--with-memory-sanitizer' in _config_args
)

Expand Down
0