forked from awslabs/aws-c-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_result.py
33 lines (31 loc) · 1.2 KB
/
check_result.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import sys
import argparse
import yaml
import os
def check_result():
parser = argparse.ArgumentParser(description = "Check CBMC Batch outputs against expected result.")
parser.add_argument("batch_result_dir", help = "The directory containing the CBMC Batch result.")
parser.add_argument("yaml", help = "The yaml containing expected CBMC Batch result substring.")
args = parser.parse_args()
if not os.path.isfile(args.yaml):
print "Expected file " + args.yaml + ": Not found"
return
with open(args.yaml, "r") as yaml_file:
try:
expected = yaml.load(yaml_file)["expected"]
except yaml.YAMLError as e:
print e
return
except KeyError as e:
print "Expected CBMC Batch result not found in " + args.yaml
return
cbmc_output = os.path.join(args.batch_result_dir, "cbmc.txt")
if not os.path.isfile(cbmc_output):
print "Expected file " + cbmc_output + ": Not found"
with open(cbmc_output, "r") as cbmc:
if expected in cbmc.read():
print "Expected output matches."
else:
print "Expected output does not match."
if __name__ == "__main__":
check_result()