(self)
| 58 | self._check_ioctl_mutate_len() |
| 59 | |
| 60 | def test_ioctl_mutate_1024(self): |
| 61 | # Issue #9758: a mutable buffer of exactly 1024 bytes wouldn't be |
| 62 | # copied back after the system call. |
| 63 | self._check_ioctl_mutate_len(1024) |
| 64 | |
| 65 | def test_ioctl_mutate_2048(self): |
| 66 | # Test with a larger buffer, just for the record. |
nothing calls this directly
no test coverage detected