We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
On Linux systems, when configured with a default pipe capacity of 4096, the following test fail:
From a recent fcntl(2) Linux man page:
fcntl(2)
F_SETPIPE_SZ: ... Attempts to set the pipe capacity below the page size are silently rounded up to the page size.
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')
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