gh-124986: Fix max_handles for NetBSD in test_no_leaking#124987
Closed
furkanonder wants to merge 1 commit intopython:mainfrom
Closed
gh-124986: Fix max_handles for NetBSD in test_no_leaking#124987furkanonder wants to merge 1 commit intopython:mainfrom
furkanonder wants to merge 1 commit intopython:mainfrom
Conversation
gpshead
reviewed
Oct 5, 2024
| def test_no_leaking(self): | ||
| # Make sure we leak no resources | ||
| if not mswindows: | ||
| if sys.platform.startswith("netbsd"): |
Member
There was a problem hiding this comment.
rather than more specialization for what is probably a kernel config... I think catching ValueError within the loop down where OSError is caught and treating it the same would make more sense.
Contributor
Author
There was a problem hiding this comment.
I'm sorry, I don't know exactly what you mean. The error is not being raised in this context.
try:
tmpfile = os.path.join(tmpdir, os_helper.TESTFN)
handles.append(os.open(tmpfile, os.O_WRONLY|os.O_CREAT))
except OSError as e:
if e.errno != errno.EMFILE:
raise
breakIs this what you mean?
try:
p = subprocess.Popen([sys.executable, "-c",
"import sys;"
"sys.stdout.write(sys.stdin.read())"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
data = p.communicate(b"lime")[0]
self.assertEqual(data, b"lime")
except Exception as err:
self.skipTest("failed to reach the file descriptor limit "
"(tried %d)" % max_handles)
Member
|
See more general solution in #132476. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.