(self, size)
| 12 | class Fake_urandom(QlFsMappedObject): |
| 13 | |
| 14 | def read(self, size): |
| 15 | return b"\x01" # fixed value for reading /dev/urandom |
| 16 | |
| 17 | def fstat(self): # syscall fstat will ignore it if return -1 |
| 18 | return -1 |
no outgoing calls
no test coverage detected