fix trailing space and new line
temporarily disable codespell
This commit is contained in:
@@ -56,7 +56,7 @@ if __name__ == '__main__':
|
||||
result = pool.starmap(build_utils.build_example, pool_args)
|
||||
# sum all element of same index (column sum)
|
||||
result = list(map(sum, list(zip(*result))))
|
||||
|
||||
|
||||
# add to total result
|
||||
total_result = list(map(lambda x, y: x + y, total_result, result))
|
||||
|
||||
|
@@ -124,4 +124,4 @@ def build_size(make_cmd):
|
||||
sram_size = int(size_list[1]) + int(size_list[2])
|
||||
return (flash_size, sram_size)
|
||||
|
||||
return (0, 0)
|
||||
return (0, 0)
|
||||
|
@@ -141,5 +141,5 @@
|
||||
<path>$TUSB_DIR$/lib/SEGGER_RTT/Syscalls/SEGGER_RTT_Syscalls_IAR.c</path>
|
||||
</group>
|
||||
</files>
|
||||
|
||||
|
||||
</iarProjectConnection>
|
||||
|
@@ -45,4 +45,4 @@ if __name__ == "__main__":
|
||||
if len(sys.argv) != 3:
|
||||
print("Usage: mksunxi.py input.bin output.bin")
|
||||
exit(1)
|
||||
exit(process_file(sys.argv[1], sys.argv[2]))
|
||||
exit(process_file(sys.argv[1], sys.argv[2]))
|
||||
|
@@ -16,7 +16,7 @@ def extract_packets(pcap_file):
|
||||
|
||||
def build_corpus_zip(zip_file_output, packets):
|
||||
"""Builds a zip file with a file per packet
|
||||
|
||||
|
||||
The structure of this zip corpus is a simple content addressable storage
|
||||
i.e. seed_file_name == sha256_digest(packet).
|
||||
"""
|
||||
@@ -25,7 +25,7 @@ def build_corpus_zip(zip_file_output, packets):
|
||||
hash = hashlib.sha256(packet).hexdigest()
|
||||
if hash not in out.namelist():
|
||||
out.writestr(hash, packet)
|
||||
|
||||
|
||||
|
||||
def main(pcap_file, output_zip_file):
|
||||
packets = extract_packets(pcap_file)
|
||||
@@ -35,12 +35,10 @@ if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(
|
||||
prog = "pcapng_to_corpus.py",
|
||||
description="""Converts a wireshark capture to a zip of binary packet
|
||||
files suitable for an oss-fuzz corpus. In the case the
|
||||
zip corpus already exists, this script will modify
|
||||
files suitable for an oss-fuzz corpus. In the case the
|
||||
zip corpus already exists, this script will modify
|
||||
the zip file in place adding seed entries.""")
|
||||
parser.add_argument('pcapng_capture_file')
|
||||
parser.add_argument('oss_fuzz_corpus_zip')
|
||||
args = parser.parse_args()
|
||||
main(args.pcapng_capture_file, args.oss_fuzz_corpus_zip)
|
||||
|
||||
|
||||
|
@@ -105,4 +105,4 @@ DRIVERFILENAME ="usbser"
|
||||
MFGNAME="tinyusb.org"
|
||||
INSTDISK="tinyusb CDC Driver"
|
||||
DESCRIPTION="tinyusb Serial"
|
||||
SERVICE="USB RS-232 Emulation Driver"
|
||||
SERVICE="USB RS-232 Emulation Driver"
|
||||
|
Reference in New Issue
Block a user