Adding FreeRTOS+TCP CBMC proofs to FreeRTOS/FreeRTOS (#56)

ParseDNSReply is to be added in the next PR.
This commit is contained in:
AniruddhaKanhere 2020-04-21 15:40:08 -07:00 committed by GitHub
parent 40a31b6d35
commit 4db195c916
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
100 changed files with 3448 additions and 30 deletions

View file

@ -16,8 +16,8 @@ def patch():
failed_patches = []
for tmpfile in glob(os.path.join(PATCHES_DIR, "*.patch")):
print("patch", tmpfile)
result = subprocess.run(["git", "apply", "--ignore-whitespace", tmpfile],
cwd=os.path.join("..", "..", ".."))
result = subprocess.run(["git", "apply", "--ignore-space-change", "--ignore-whitespace", tmpfile],
cwd=os.path.join("..", "..", "..", ".."))
if result.returncode:
failed_patches.append(tmpfile)
logging.error("patching failed: %s", tmpfile)