forked from septract/starling-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regress.py
executable file
·156 lines (121 loc) · 4.63 KB
/
regress.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python3
import functools
import os
import re
import sys
import argparse
import itertools
import collections
from typing import Iterator
from starling_common import *
# This file should contain records of the form
# bucket:name: failing-term1 failing-term2 ... failing-termN
SPEC_FILE = 'regress.in'
Z3_PASS_DIR: pathlib.Path = pathlib.Path('Examples', 'Pass')
Z3_FAIL_DIR: pathlib.Path = pathlib.Path('Examples', 'Fail')
GH_PASS_DIR: pathlib.Path = pathlib.Path('Examples', 'PassGH')
GH_FAIL_DIR: pathlib.Path = pathlib.Path('Examples', 'FailGH')
CVF_PATTERN: str = '**/*.cvf'
ARGS = None
def verbose(fmt, *args):
"""Prints to stdout, but only in verbose mode."""
if ARGS.verbose:
print(fmt.format(*args))
def err(fmt, *args):
"""Prints to stderr."""
print(fmt.format(*args), file=sys.stderr)
def z3(starling: Starling, file_name):
"""Runs Starling in Z3 mode on file_name, yielding all failing clauses.
Args:
starling: The Starling object to use.
file_name: The name of the file to check.
Yields:
Each failing clause resulting from running Starling.
"""
output = starling.run_z3(file_name)
for line in output.stdout:
# outputs in form
# "clause_name: (success | fail)
name, _, status = line.partition(':')
name, status = name.strip(), status.strip()
if status == 'fail':
yield name
def grasshopper(starling: Starling, grasshopper_args, file_name):
"""Runs Starling/GRASShopper mode on file_name, yielding failing clauses.
Args:
starling: The Starling object to use.
grasshopper_args: A list containing the program name, and zero or
more arguments, needed to run GRASShopper.
file_name: The name of the file to check.
Yields:
Each failing clause resulting from running Starling.
"""
output = starling.run_grasshopper(grasshopper_args, file_name)
# The GRASShopper output needs some significant massaging.
for line in output.stdout:
m = GH_FAIL_RE.match(line)
if m:
yield m.group('term')
def make_failure_dict(spec_file):
"""Creates a lookup of all expected failures from spec_file.
Returns a dict of (name: str -> failure_names: set[str])
"""
expected_failures = {}
for (bucket, name, failures) in read_infile(spec_file):
path = inflate_example_name(bucket, name)
expected_failures[path] = set()
for failure in failures.split(None):
expected_failures[path].add(failure.strip())
return expected_failures
def check(files: Iterator[pathlib.Path], checker, expected_failures):
"""Runs a checker on each file in files, and reports failures."""
failed_overall = False
for file in files:
verbose('check {}', file)
if file not in expected_failures:
err('[{}]', file)
err('test data missing')
return True
failed = False
for fail in checker(file):
if fail not in expected_failures[file]:
if not failed:
failed = True
err('[{}]', file)
err(' unexpected failures:', file)
err('> {}', fail)
failed_overall = True
return failed_overall
def main():
""" Run starling on the Examples/Pass and Examples/Fail directories
and check that there are no unexpected failures. Exiting with exit code 1
if there are
"""
expected_failures = make_failure_dict(SPEC_FILE)
starling = get_starling()
failed = False
if not ARGS.noz3:
pass_z3 = Z3_PASS_DIR.glob(CVF_PATTERN)
fail_z3 = Z3_FAIL_DIR.glob(CVF_PATTERN)
z = functools.partial(z3, starling)
failed = check(itertools.chain(pass_z3, fail_z3), z, expected_failures)
if not (failed or ARGS.nogh):
pass_gh = GH_PASS_DIR.glob(CVF_PATTERN)
fail_gh = GH_FAIL_DIR.glob(CVF_PATTERN)
g = functools.partial(grasshopper, starling, ['grasshopper.native', '-robust'])
failed = check(itertools.chain(pass_gh, fail_gh), g, expected_failures)
if failed:
verbose('')
print('FAIL.')
sys.exit(1)
else:
verbose('')
print('OK.')
sys.exit(0)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-v', '--verbose', action='store_true', help='turn on verbose output')
parser.add_argument('-z', '--noz3', action='store_true', help='do not check Z3 examples')
parser.add_argument('-g', '--nogh', action='store_true', help='do not check GRASShopper examples')
ARGS = parser.parse_args()
main()