(f)
| 34 | |
| 35 | |
| 36 | def binload(f): |
| 37 | with open(f, 'rb') as ff: |
| 38 | buf = bytearray(os.fstat(ff.fileno()).st_size) |
| 39 | ff.readinto(buf) |
| 40 | return buf |
| 41 | |
| 42 | |
| 43 | pktfiles = sorted(glob.glob('tests/testdata/packets/[0-9]*')) |
no outgoing calls
no test coverage detected
searching dependent graphs…