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