mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-12-23 09:18:55 +00:00
4d1f5c899f
This aligns with ut_test.py . Using an older Python also allows compatibility with the older macOS 10.12 Travis CI. References #1323.
19 lines
443 B
Python
Executable File
19 lines
443 B
Python
Executable File
#!/usr/bin/env python2
|
|
|
|
import os
|
|
import sys
|
|
|
|
if len(sys.argv) < 4 or len(sys.argv) % 2 != 0:
|
|
sys.exit("Usage: %s OUTFILE OFFSET_1 SIZE_1 [OFFSET_N SIZE_N]...")
|
|
|
|
filename = sys.argv[1]
|
|
|
|
fd = os.open(filename, os.O_CREAT | os.O_TRUNC | os.O_WRONLY)
|
|
try:
|
|
for i in range(2, len(sys.argv), 2):
|
|
data = "a" * int(sys.argv[i+1])
|
|
os.lseek(fd, int(sys.argv[i]), os.SEEK_SET)
|
|
os.write(fd, data)
|
|
finally:
|
|
os.close(fd)
|