You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Dismiss alert
{{ message }}
pipe test failures on some Linux configurations #95672
Bug report
On Linux systems, when configured with a default pipe capacity of 4096, the following test fail:
From a recent
fcntl(2)Linux man page:There's a check that attempts to skip the tests if the pipe capacity is 512 bytes, but that's less than the smallest page size on x86.
Since this feature appears to be Linux specific, the check should:
os.sysconf('SC_PAGESIZE')as a minimumLinked PRs