Tinche / aiofiles

File support for asyncio
Apache License 2.0
2.83k stars 152 forks source link

Make sendfile_file test conditional #24

Closed nehaljwani closed 7 years ago

nehaljwani commented 7 years ago

For certain kernel versions, the test fails with OSError: [EINVAL]

According to man(2) sendfile:

In Linux 2.4 and earlier, out_fd could also refer to a regular file; this possibility went away in the Linux 2.6.x kernel series, but was restored in Linux 2.6.33

This patch skips the test sendfile_file on kernel versions which fall in the above range

Fixes #23

Tinche commented 7 years ago

Thanks!