author | haftmann |
Wed, 14 Mar 2012 15:24:51 +0100 | |
changeset 46931 | d2b92739038b |
parent 46200 | 4a892432e8f1 |
child 46934 | 89cc3dfb383b |
permissions | -rw-r--r-- |
41542 | 1 |
""" |
2 |
Test configuration descriptions for mira. |
|
3 |
""" |
|
4 |
||
5 |
import os |
|
6 |
from os import path |
|
7 |
from glob import glob |
|
8 |
import subprocess |
|
42392 | 9 |
from datetime import datetime |
41542 | 10 |
import re |
11 |
||
12 |
import util |
|
42392 | 13 |
from util import Lazy |
41542 | 14 |
|
42392 | 15 |
from mira.report import Report, Report_Content |
16 |
from mira.case import Case |
|
17 |
from mira.tools import tool |
|
42823 | 18 |
from mira import schedule, misc |
42192 | 19 |
from mira.environment import scheduler |
46931 | 20 |
from mira import repositories |
42192 | 21 |
|
41542 | 22 |
# build and evaluation tools |
23 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
24 |
default_usedir_options = "$ISABELLE_USEDIR_OPTIONS -d pdf -g true -i true -t true" |
41542 | 25 |
|
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
26 |
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
27 |
usedir_options=default_usedir_options, more_settings=''): |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
28 |
|
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
29 |
# prepare components |
41542 | 30 |
loc_contrib = path.expanduser(loc_contrib) |
31 |
if not path.exists(loc_contrib): |
|
32 |
raise IOError('Bad file: %s' % loc_contrib) |
|
33 |
subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle]) |
|
34 |
||
35 |
contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components') |
|
36 |
if path.exists(contributed_components): |
|
37 |
components = [] |
|
38 |
for component in util.readfile_lines(contributed_components): |
|
39 |
loc_component = path.join(loc_isabelle, component) |
|
40 |
if path.exists(loc_component): |
|
41 |
components.append(loc_component) |
|
42 |
writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a') |
|
43 |
for component in components: |
|
44 |
writer.write(component + '\n') |
|
45 |
writer.close() |
|
46 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
47 |
# provide existing dependencies |
41542 | 48 |
if loc_dependency_heaps: |
49 |
isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT' |
|
50 |
else: |
|
51 |
isabelle_path = '$ISABELLE_OUTPUT' |
|
52 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
53 |
# patch settings |
41542 | 54 |
extra_settings = ''' |
55 |
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user" |
|
56 |
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
|
57 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
|
58 |
ISABELLE_PATH="%s" |
|
59 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
60 |
ISABELLE_USEDIR_OPTIONS="%s" |
42109 | 61 |
Z3_NON_COMMERCIAL="yes" |
42113 | 62 |
%s |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
63 |
''' % (isabelle_path, usedir_options, more_settings) |
41542 | 64 |
|
65 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
66 |
writer.write(extra_settings) |
|
67 |
writer.close() |
|
68 |
||
69 |
||
45164 | 70 |
def isabelle_getenv(isabelle_home, var): |
71 |
||
72 |
_, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var) |
|
73 |
return out.split('=', 1)[1].strip() |
|
74 |
||
75 |
||
41542 | 76 |
def extract_isabelle_run_timing(logdata): |
77 |
||
78 |
def to_secs(h, m, s): |
|
79 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
80 |
pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time' |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
81 |
pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)' |
41542 | 82 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
83 |
for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata)) |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
84 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 85 |
|
86 |
if name not in t: |
|
87 |
t[name] = {} |
|
88 |
||
89 |
t[name]['threads'] = int(threads) |
|
90 |
t[name]['elapsed_inner'] = elapsed |
|
91 |
t[name]['cpu_inner'] = cpu |
|
92 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
93 |
t[name]['factor'] = factor |
41542 | 94 |
|
95 |
return t |
|
96 |
||
97 |
||
98 |
def extract_isabelle_run_summary(logdata): |
|
99 |
||
41894 | 100 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 101 |
summary = '\n'.join(re_error.findall(logdata)) |
102 |
if summary == '': |
|
103 |
summary = 'ok' |
|
104 |
||
105 |
return summary |
|
106 |
||
107 |
||
45164 | 108 |
def extract_image_size(isabelle_home): |
109 |
||
110 |
isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT') |
|
111 |
return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log") |
|
112 |
||
113 |
def extract_report_data(isabelle_home, logdata): |
|
114 |
||
115 |
return { |
|
116 |
'timing': extract_isabelle_run_timing(logdata), |
|
117 |
'image_size': extract_image_size(isabelle_home) } |
|
118 |
||
119 |
||
42392 | 120 |
@tool |
121 |
def import_isatest_log(env, conf, logfile): |
|
122 |
||
123 |
"""Imports isatest log file as a report.""" |
|
124 |
||
125 |
def the_match(pat, text, name): |
|
126 |
match = re.search(pat, text) |
|
127 |
if not match: raise Exception('No match found for ' + name) |
|
128 |
return match.groups() |
|
129 |
||
130 |
def parse_date(d): |
|
131 |
return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y') |
|
132 |
||
133 |
log = util.readfile(logfile) |
|
134 |
||
135 |
(begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag') |
|
136 |
(isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version') |
|
137 |
(success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag') |
|
138 |
summary = extract_isabelle_run_summary(log) |
|
139 |
data = {'timing': extract_isabelle_run_timing(log)} |
|
140 |
atts = {'log': Lazy.simple(log)} |
|
141 |
||
142 |
content = Report_Content(summary, host, parse_date(begin_date), |
|
143 |
parse_date(end_date), Lazy.simple(data), atts) |
|
144 |
revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex()) |
|
145 |
case = Case(conf, [revision]) |
|
146 |
||
147 |
env.report_db.put(case, (success == 'successful'), content) |
|
148 |
||
149 |
||
150 |
||
41542 | 151 |
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name): |
152 |
||
153 |
return env.run_process('%s/bin/isabelle' % isa_path, 'usedir', |
|
154 |
isabelle_usedir_opts, base_image, dir_name) |
|
155 |
||
156 |
||
157 |
def isabelle_dependency_only(env, case, paths, dep_paths, playground): |
|
158 |
||
42114 | 159 |
isabelle_home = paths[0] |
160 |
result = path.join(isabelle_home, 'heaps') |
|
41542 | 161 |
os.makedirs(result) |
162 |
for dep_path in dep_paths: |
|
163 |
subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result]) |
|
164 |
||
165 |
return (True, 'ok', {}, {}, result) |
|
166 |
||
167 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
168 |
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
169 |
usedir_options=default_usedir_options, more_settings=''): |
41542 | 170 |
|
42114 | 171 |
isabelle_home = paths[0] |
41542 | 172 |
dep_path = dep_paths[0] |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
173 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
174 |
usedir_options=usedir_options, more_settings=more_settings) |
42114 | 175 |
os.chdir(path.join(isabelle_home, 'src', subdir)) |
41542 | 176 |
|
42114 | 177 |
(return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img) |
41542 | 178 |
|
42114 | 179 |
result = path.join(isabelle_home, 'heaps') |
45164 | 180 |
|
41542 | 181 |
return (return_code == 0, extract_isabelle_run_summary(log), |
45164 | 182 |
extract_report_data(isabelle_home, log), {'log': log}, result) |
41542 | 183 |
|
184 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
185 |
def isabelle_make(subdir, env, case, paths, dep_paths, playground, usedir_options=default_usedir_options, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
186 |
more_settings='', target='all', keep_results=False): |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
187 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
188 |
isabelle_home = paths[0] |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
189 |
dep_path = dep_paths[0] if dep_paths else None |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
190 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
191 |
usedir_options=usedir_options, more_settings=more_settings) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
192 |
os.chdir(path.join(isabelle_home, subdir)) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
193 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
194 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
195 |
|
42140 | 196 |
result = path.join(isabelle_home, 'heaps') if keep_results else None |
45164 | 197 |
|
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
198 |
return (return_code == 0, extract_isabelle_run_summary(log), |
45164 | 199 |
extract_report_data(isabelle_home, log), {'log': log}, result) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
200 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
201 |
|
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
202 |
def isabelle_makeall(env, case, paths, dep_paths, playground, usedir_options=default_usedir_options, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
203 |
more_settings='', target='all', make_options=()): |
41542 | 204 |
|
42823 | 205 |
if 'lxbroy10' in misc.hostnames(): |
206 |
make_options += ('-j', '8') |
|
46200
4a892432e8f1
more modest settings for lxbroy10 -- might actually perform better;
wenzelm
parents:
45164
diff
changeset
|
207 |
usedir_options += " -M 4 -q 2 -i false -d false" |
42823 | 208 |
more_settings += ''' |
209 |
ML_PLATFORM="x86_64-linux" |
|
45157
efc2e2d80218
mira configuration: use official polyml 5.4.1 on lxbroy10
krauss
parents:
43903
diff
changeset
|
210 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
42823 | 211 |
ML_SYSTEM="polyml-5.4.1" |
46200
4a892432e8f1
more modest settings for lxbroy10 -- might actually perform better;
wenzelm
parents:
45164
diff
changeset
|
212 |
ML_OPTIONS="-H 4000 --gcthreads 4" |
43334
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
213 |
|
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
214 |
ISABELLE_GHC="/usr/bin/ghc" |
42823 | 215 |
''' |
216 |
||
42114 | 217 |
isabelle_home = paths[0] |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
218 |
dep_path = dep_paths[0] if dep_paths else None |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
219 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
220 |
usedir_options=usedir_options, more_settings=more_settings) |
42114 | 221 |
os.chdir(isabelle_home) |
41542 | 222 |
|
42121 | 223 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,))) |
41542 | 224 |
|
225 |
return (return_code == 0, extract_isabelle_run_summary(log), |
|
45164 | 226 |
extract_report_data(isabelle_home, log), {'log': log}, None) |
41542 | 227 |
|
228 |
||
43689 | 229 |
def make_pure(env, case, paths, dep_paths, playground, more_settings=''): |
41542 | 230 |
|
42114 | 231 |
isabelle_home = paths[0] |
43689 | 232 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, '', |
233 |
more_settings=more_settings) |
|
42114 | 234 |
os.chdir(path.join(isabelle_home, 'src', 'Pure')) |
41542 | 235 |
|
42114 | 236 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure') |
41542 | 237 |
|
42114 | 238 |
result = path.join(isabelle_home, 'heaps') |
41542 | 239 |
return (return_code == 0, extract_isabelle_run_summary(log), |
240 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, result) |
|
241 |
||
43689 | 242 |
|
243 |
# Isabelle configurations |
|
244 |
||
245 |
@configuration(repos = [Isabelle], deps = []) |
|
246 |
def Pure(*args): |
|
247 |
"""Pure image""" |
|
248 |
return make_pure(*args) |
|
249 |
||
250 |
@configuration(repos = [Isabelle], deps = []) |
|
251 |
def Pure_64(*args): |
|
252 |
"""Pure image (64 bit)""" |
|
253 |
return make_pure(*args, more_settings='ML_PLATFORM=x86_64-linux') |
|
254 |
||
41542 | 255 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
256 |
def HOL(*args): |
|
257 |
"""HOL image""" |
|
258 |
return build_isabelle_image('HOL', 'Pure', 'HOL', *args) |
|
259 |
||
43689 | 260 |
@configuration(repos = [Isabelle], deps = [(Pure_64, [0])]) |
261 |
def HOL_64(*args): |
|
262 |
"""HOL image (64 bit)""" |
|
263 |
return build_isabelle_image('HOL', 'Pure', 'HOL', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
264 |
||
265 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
|
266 |
def HOL_HOLCF_64(*args): |
|
267 |
"""HOL-HOLCF image (64 bit)""" |
|
268 |
return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 269 |
|
43689 | 270 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
271 |
def HOL_Nominal_64(*args): |
|
272 |
"""HOL-Nominal image (64 bit)""" |
|
273 |
return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 274 |
|
43689 | 275 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
276 |
def HOL_Word_64(*args): |
|
277 |
"""HOL-Word image (64 bit)""" |
|
278 |
return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 279 |
|
280 |
@configuration(repos = [Isabelle], deps = [ |
|
43689 | 281 |
(HOL_64, [0]), |
282 |
(HOL_HOLCF_64, [0]), |
|
283 |
(HOL_Nominal_64, [0]), |
|
284 |
(HOL_Word_64, [0]) |
|
41542 | 285 |
]) |
286 |
def AFP_images(*args): |
|
43689 | 287 |
"""Isabelle images needed for the AFP (64 bit)""" |
41542 | 288 |
return isabelle_dependency_only(*args) |
289 |
||
42822
dc7232f0c303
no dependencies for Isabelle_makeall, which will be built in one go
krauss
parents:
42821
diff
changeset
|
290 |
@configuration(repos = [Isabelle], deps = []) |
41542 | 291 |
def Isabelle_makeall(*args): |
292 |
"""Isabelle makeall""" |
|
293 |
return isabelle_makeall(*args) |
|
294 |
||
295 |
||
46931 | 296 |
# Document and Distribution Build |
297 |
||
298 |
@configuration(repos = [Isabelle], deps = []) |
|
299 |
def Distribution(env, case, paths, dep_paths, playground): |
|
300 |
"""Document and Distribution Build""" |
|
301 |
## FIXME This is rudimentary; study Admin/CHECKLIST to complete this configuration accordingly |
|
302 |
isabelle_home = paths[0] |
|
303 |
makedist = path.join(isabelle_home, 'Admin', 'makedist') |
|
304 |
(return_code, log) = env.run_process(makedist, |
|
305 |
REPOS = repositories.get(Isabelle).local_path, DISTPREFIX = os.getcwd()) |
|
306 |
return (return_code == 0, '', ## FIXME might add summary here |
|
307 |
{}, {'log': log}, None) ## FIXME might add proper result here |
|
308 |
||
309 |
||
41542 | 310 |
# Mutabelle configurations |
311 |
||
312 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
313 |
||
314 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
315 |
||
316 |
(loc_isabelle,) = paths |
|
317 |
(dep_isabelle,) = dep_paths |
|
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
318 |
more_settings = ''' |
43153
cbb748ccf81b
changing the mira setting again for the mutabelle configuration
bulwahn
parents:
43152
diff
changeset
|
319 |
ISABELLE_GHC="/usr/bin/ghc" |
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
320 |
''' |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
321 |
prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle, |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
322 |
more_settings = more_settings) |
41542 | 323 |
os.chdir(loc_isabelle) |
324 |
||
325 |
(return_code, log) = env.run_process('bin/isabelle', |
|
326 |
'mutabelle', '-O', playground, theory) |
|
327 |
||
328 |
try: |
|
329 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
330 |
except IOError: |
|
331 |
mutabelle_log = '' |
|
332 |
||
42472 | 333 |
mutabelle_data = dict( |
334 |
(tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e}) |
|
335 |
for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log)) |
|
336 |
||
41542 | 337 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
42472 | 338 |
{'mutabelle_results': {theory: mutabelle_data}}, |
41652 | 339 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
41542 | 340 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
341 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 342 |
def Mutabelle_Relation(*args): |
343 |
"""Mutabelle regression suite on Relation theory""" |
|
344 |
return invoke_mutabelle('Relation', *args) |
|
345 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
346 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 347 |
def Mutabelle_List(*args): |
348 |
"""Mutabelle regression suite on List theory""" |
|
349 |
return invoke_mutabelle('List', *args) |
|
350 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
351 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 352 |
def Mutabelle_Set(*args): |
353 |
"""Mutabelle regression suite on Set theory""" |
|
354 |
return invoke_mutabelle('Set', *args) |
|
355 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
356 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 357 |
def Mutabelle_Map(*args): |
358 |
"""Mutabelle regression suite on Map theory""" |
|
359 |
return invoke_mutabelle('Map', *args) |
|
360 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
361 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 362 |
def Mutabelle_Divides(*args): |
363 |
"""Mutabelle regression suite on Divides theory""" |
|
364 |
return invoke_mutabelle('Divides', *args) |
|
365 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
366 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 367 |
def Mutabelle_MacLaurin(*args): |
368 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
369 |
return invoke_mutabelle('MacLaurin', *args) |
|
370 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
371 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 372 |
def Mutabelle_Fun(*args): |
373 |
"""Mutabelle regression suite on Fun theory""" |
|
374 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 375 |
|
42393 | 376 |
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ') |
377 |
||
378 |
@scheduler() |
|
379 |
def mutabelle_scheduler(env): |
|
380 |
"""Scheduler for Mutabelle.""" |
|
381 |
return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs) |
|
42040 | 382 |
|
383 |
# Judgement Day configurations |
|
384 |
||
42095 | 385 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 386 |
|
387 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
388 |
"""Judgement Day regression suite""" |
|
389 |
||
390 |
isa = paths[0] |
|
391 |
dep_path = dep_paths[0] |
|
392 |
||
393 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
394 |
prepare_isabelle_repository(isa, env.settings.contrib, dep_path) |
|
395 |
||
396 |
output = {} |
|
397 |
success_rates = {} |
|
398 |
some_success = False |
|
399 |
||
400 |
for atp in judgement_day_provers: |
|
401 |
||
402 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
403 |
os.makedirs(log_dir) |
|
404 |
||
405 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
406 |
% (isa, log_dir, atp, opts, theory)) |
|
407 |
||
408 |
os.system(cmd) |
|
409 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
410 |
||
411 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
412 |
if len(percentages) == 2: |
|
413 |
success_rates[atp] = { |
|
414 |
'sledgehammer': int(percentages[0]), |
|
415 |
'metis': int(percentages[1])} |
|
416 |
if success_rates[atp]['sledgehammer'] > 0: |
|
417 |
some_success = True |
|
418 |
else: |
|
419 |
success_rates[atp] = {} |
|
420 |
||
421 |
||
422 |
data = {'success_rates': success_rates} |
|
423 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
424 |
# FIXME: summary? |
|
425 |
return (some_success, '', data, raw_attachments, None) |
|
426 |
||
427 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
428 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 429 |
def JD_NS(*args): |
430 |
"""Judgement Day regression suite NS""" |
|
431 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
432 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
433 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 434 |
def JD_FTA(*args): |
435 |
"""Judgement Day regression suite FTA""" |
|
436 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
437 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
438 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 439 |
def JD_Hoare(*args): |
440 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
441 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 442 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
443 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 444 |
def JD_SN(*args): |
445 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
446 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 447 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
448 |
|
42192 | 449 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
450 |
||
451 |
@scheduler() |
|
42197 | 452 |
def judgement_day_scheduler(env): |
42192 | 453 |
"""Scheduler for Judgement Day.""" |
454 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
455 |
||
456 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
457 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
458 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
459 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
460 |
ML_SYSTEM=smlnj |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
461 |
ML_HOME="/home/smlnj/110.72/bin" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
462 |
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
463 |
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
464 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
465 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
466 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
467 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
468 |
"""HOL image built with SML/NJ""" |
42140 | 469 |
return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
470 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
471 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
472 |
def SML_makeall(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
473 |
"""Makeall built with SML/NJ""" |
42138
e54a985daa61
added make target 'smlnj' to refer to what can/should be tested using smlnj -- allows the use of "isabelle makeall smlnj";
krauss
parents:
42121
diff
changeset
|
474 |
return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3')) |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
475 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
476 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
477 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
478 |
# Importer |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
479 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
480 |
@configuration(repos = ['Hollight'], deps = []) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
481 |
def Hollight_proof_objects(env, case, paths, dep_paths, playground): |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
482 |
"""Build proof object bundle from HOL Light""" |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
483 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
484 |
hollight_home = paths[0] |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
485 |
os.chdir(os.path.join(hollight_home, 'Proofrecording', 'hol_light')) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
486 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
487 |
subprocess.check_call(['make']) |
43897 | 488 |
(return_code, _) = util.run_process.run_process( |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
489 |
'''echo -e '#use "hol.ml";;\n export_saved_proofs None;;' | ocaml''', |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
490 |
environment={'HOLPROOFEXPORTDIR': './proofs_extended', 'HOLPROOFOBJECTS': 'EXTENDED'}, |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
491 |
shell=True) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
492 |
subprocess.check_call('tar -czf proofs_extended.tar.gz proofs_extended'.split(' ')) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
493 |
subprocess.check_call(['mv', 'proofs_extended.tar.gz', playground]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
494 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
495 |
return (return_code == 0, '', {}, {}, playground) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
496 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
497 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
498 |
@configuration(repos = [Isabelle, 'Hollight'], deps = [(Hollight_proof_objects, [1])]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
499 |
def HOL_Generate_HOLLight(env, case, paths, dep_paths, playground): |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
500 |
"""Generated theories by HOL Light import""" |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
501 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
502 |
os.chdir(playground) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
503 |
subprocess.check_call(['tar', '-xzf', path.join(dep_paths[0], 'proofs_extended.tar.gz')]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
504 |
proofs_dir = path.join(playground, 'proofs_extended') |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
505 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
506 |
return isabelle_make('src/HOL', env, case, paths, dep_paths, playground, |
43903 | 507 |
more_settings=('HOL4_PROOFS="%s"' % proofs_dir), target='HOL-Generate-HOLLight') |