author | wenzelm |
Mon, 03 Sep 2012 22:51:33 +0200 | |
changeset 49106 | aa09d99bf414 |
parent 48848 | ae7429d66b1e |
child 49175 | eab51f249c70 |
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 |
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, |
48783 | 25 |
usedir_options='', more_settings=''): |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
26 |
|
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
27 |
# prepare components |
41542 | 28 |
loc_contrib = path.expanduser(loc_contrib) |
29 |
if not path.exists(loc_contrib): |
|
30 |
raise IOError('Bad file: %s' % loc_contrib) |
|
31 |
subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle]) |
|
32 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
33 |
# patch settings |
41542 | 34 |
extra_settings = ''' |
35 |
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user" |
|
48785
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
36 |
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
37 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
38 |
ISABELLE_PATH="$ISABELLE_OUTPUT" |
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
39 |
|
42109 | 40 |
Z3_NON_COMMERCIAL="yes" |
48785
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
41 |
|
48848
ae7429d66b1e
updated to new init_components, hoping that mira can digest that;
wenzelm
parents:
48785
diff
changeset
|
42 |
init_components "$COMPONENT/contrib" "$ISABELLE_HOME/Admin/components/main" |
ae7429d66b1e
updated to new init_components, hoping that mira can digest that;
wenzelm
parents:
48785
diff
changeset
|
43 |
init_components "$COMPONENT/contrib" "$ISABELLE_HOME/Admin/components/optional" |
ae7429d66b1e
updated to new init_components, hoping that mira can digest that;
wenzelm
parents:
48785
diff
changeset
|
44 |
init_components "$COMPONENT/contrib" "$ISABELLE_HOME/Admin/components/nonfree" |
48182 | 45 |
|
48783 | 46 |
''' + more_settings |
41542 | 47 |
|
48 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
49 |
writer.write(extra_settings) |
|
50 |
writer.close() |
|
51 |
||
52 |
||
45164 | 53 |
def isabelle_getenv(isabelle_home, var): |
54 |
||
55 |
_, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var) |
|
56 |
return out.split('=', 1)[1].strip() |
|
57 |
||
58 |
||
41542 | 59 |
def extract_isabelle_run_timing(logdata): |
60 |
||
61 |
def to_secs(h, m, s): |
|
62 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
63 |
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
|
64 |
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 | 65 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
66 |
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
|
67 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 68 |
|
69 |
if name not in t: |
|
70 |
t[name] = {} |
|
71 |
||
72 |
t[name]['threads'] = int(threads) |
|
73 |
t[name]['elapsed_inner'] = elapsed |
|
74 |
t[name]['cpu_inner'] = cpu |
|
75 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
76 |
t[name]['factor'] = factor |
41542 | 77 |
|
78 |
return t |
|
79 |
||
80 |
||
81 |
def extract_isabelle_run_summary(logdata): |
|
82 |
||
41894 | 83 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 84 |
summary = '\n'.join(re_error.findall(logdata)) |
85 |
if summary == '': |
|
86 |
summary = 'ok' |
|
87 |
||
88 |
return summary |
|
89 |
||
90 |
||
45164 | 91 |
def extract_image_size(isabelle_home): |
92 |
||
93 |
isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT') |
|
94 |
return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log") |
|
95 |
||
96 |
def extract_report_data(isabelle_home, logdata): |
|
97 |
||
98 |
return { |
|
99 |
'timing': extract_isabelle_run_timing(logdata), |
|
100 |
'image_size': extract_image_size(isabelle_home) } |
|
101 |
||
102 |
||
42392 | 103 |
@tool |
104 |
def import_isatest_log(env, conf, logfile): |
|
105 |
||
106 |
"""Imports isatest log file as a report.""" |
|
107 |
||
108 |
def the_match(pat, text, name): |
|
109 |
match = re.search(pat, text) |
|
110 |
if not match: raise Exception('No match found for ' + name) |
|
111 |
return match.groups() |
|
112 |
||
113 |
def parse_date(d): |
|
114 |
return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y') |
|
115 |
||
116 |
log = util.readfile(logfile) |
|
117 |
||
118 |
(begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag') |
|
119 |
(isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version') |
|
120 |
(success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag') |
|
121 |
summary = extract_isabelle_run_summary(log) |
|
122 |
data = {'timing': extract_isabelle_run_timing(log)} |
|
123 |
atts = {'log': Lazy.simple(log)} |
|
124 |
||
125 |
content = Report_Content(summary, host, parse_date(begin_date), |
|
126 |
parse_date(end_date), Lazy.simple(data), atts) |
|
127 |
revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex()) |
|
128 |
case = Case(conf, [revision]) |
|
129 |
||
130 |
env.report_db.put(case, (success == 'successful'), content) |
|
131 |
||
132 |
||
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
133 |
def isabelle_build(env, case, paths, dep_paths, playground, *cmdargs, **kwargs): |
41542 | 134 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
135 |
more_settings=kwargs.get('more_settings', '') |
41542 | 136 |
|
42114 | 137 |
isabelle_home = paths[0] |
41542 | 138 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
139 |
# copy over build results from dependencies |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
140 |
heap_dir = path.join(isabelle_home, 'heaps') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
141 |
classes_dir = path.join(heap_dir, 'classes') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
142 |
os.makedirs(classes_dir) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
143 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
144 |
for dep_path in dep_paths: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
145 |
subprocess.check_call(['cp', '-a'] + glob(dep_path + '/*') + [heap_dir]) |
45164 | 146 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
147 |
subprocess.check_call(['ln', '-s', classes_dir, path.join(isabelle_home, 'lib', 'classes')]) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
148 |
jars = glob(path.join(classes_dir, 'ext', '*.jar')) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
149 |
if jars: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
150 |
subprocess.check_call(['touch'] + jars) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
151 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
152 |
# misc preparations |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
153 |
if 'lxbroy10' in misc.hostnames(): # special settings for lxbroy10 |
42823 | 154 |
more_settings += ''' |
155 |
ML_PLATFORM="x86_64-linux" |
|
45157
efc2e2d80218
mira configuration: use official polyml 5.4.1 on lxbroy10
krauss
parents:
43903
diff
changeset
|
156 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
42823 | 157 |
ML_SYSTEM="polyml-5.4.1" |
46200
4a892432e8f1
more modest settings for lxbroy10 -- might actually perform better;
wenzelm
parents:
45164
diff
changeset
|
158 |
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
|
159 |
|
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
160 |
ISABELLE_GHC="/usr/bin/ghc" |
42823 | 161 |
''' |
162 |
||
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
163 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, None, |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
164 |
usedir_options="", more_settings=more_settings) |
42114 | 165 |
os.chdir(isabelle_home) |
41542 | 166 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
167 |
# invoke build tool |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
168 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'build', '-s', '-v', *cmdargs) |
41542 | 169 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
170 |
# collect report |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
171 |
return (return_code == 0, extract_isabelle_run_summary(log), |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
172 |
extract_report_data(isabelle_home, log), {'log': log}, heap_dir) |
41542 | 173 |
|
174 |
||
43689 | 175 |
|
176 |
# Isabelle configurations |
|
177 |
||
178 |
@configuration(repos = [Isabelle], deps = []) |
|
179 |
def Pure(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
180 |
"""Pure Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
181 |
return isabelle_build(*(args + ("-b", "Pure"))) |
43689 | 182 |
|
41542 | 183 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
184 |
def HOL(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
185 |
"""HOL Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
186 |
return isabelle_build(*(args + ("-b", "HOL"))) |
41542 | 187 |
|
46934 | 188 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
189 |
def HOL_Library(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
190 |
"""HOL Library""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
191 |
return isabelle_build(*(args + ("-b", "HOL-Library"))) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
192 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
193 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
48688 | 194 |
def HOLCF(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
195 |
"""HOLCF""" |
48688 | 196 |
return isabelle_build(*(args + ("-b", "HOLCF"))) |
46934 | 197 |
|
198 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
|
199 |
def ZF(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
200 |
"""HOLCF""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
201 |
return isabelle_build(*(args + ("-b", "ZF"))) |
46934 | 202 |
|
203 |
||
47895 | 204 |
settings64=''' |
205 |
ML_PLATFORM=x86_64-linux |
|
206 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
|
207 |
ML_SYSTEM="polyml-5.4.1" |
|
208 |
''' |
|
209 |
||
47897 | 210 |
@configuration(repos = [Isabelle], deps = []) |
41542 | 211 |
def Isabelle_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
212 |
"""Build all sessions""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
213 |
return isabelle_build(*(args + ("-j", "6", "-o", "threads=4", "-a")), more_settings=settings64) |
46934 | 214 |
|
46931 | 215 |
|
41542 | 216 |
# Mutabelle configurations |
217 |
||
218 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
219 |
||
220 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
221 |
||
222 |
(loc_isabelle,) = paths |
|
223 |
(dep_isabelle,) = dep_paths |
|
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
224 |
more_settings = ''' |
43153
cbb748ccf81b
changing the mira setting again for the mutabelle configuration
bulwahn
parents:
43152
diff
changeset
|
225 |
ISABELLE_GHC="/usr/bin/ghc" |
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
226 |
''' |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
227 |
prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle, |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
228 |
more_settings = more_settings) |
41542 | 229 |
os.chdir(loc_isabelle) |
230 |
||
231 |
(return_code, log) = env.run_process('bin/isabelle', |
|
232 |
'mutabelle', '-O', playground, theory) |
|
233 |
||
234 |
try: |
|
235 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
236 |
except IOError: |
|
237 |
mutabelle_log = '' |
|
238 |
||
42472 | 239 |
mutabelle_data = dict( |
240 |
(tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e}) |
|
241 |
for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log)) |
|
242 |
||
41542 | 243 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
42472 | 244 |
{'mutabelle_results': {theory: mutabelle_data}}, |
41652 | 245 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
41542 | 246 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
247 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 248 |
def Mutabelle_Relation(*args): |
249 |
"""Mutabelle regression suite on Relation theory""" |
|
250 |
return invoke_mutabelle('Relation', *args) |
|
251 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
252 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 253 |
def Mutabelle_List(*args): |
254 |
"""Mutabelle regression suite on List theory""" |
|
255 |
return invoke_mutabelle('List', *args) |
|
256 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
257 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 258 |
def Mutabelle_Set(*args): |
259 |
"""Mutabelle regression suite on Set theory""" |
|
260 |
return invoke_mutabelle('Set', *args) |
|
261 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
262 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 263 |
def Mutabelle_Map(*args): |
264 |
"""Mutabelle regression suite on Map theory""" |
|
265 |
return invoke_mutabelle('Map', *args) |
|
266 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
267 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 268 |
def Mutabelle_Divides(*args): |
269 |
"""Mutabelle regression suite on Divides theory""" |
|
270 |
return invoke_mutabelle('Divides', *args) |
|
271 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
272 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 273 |
def Mutabelle_MacLaurin(*args): |
274 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
275 |
return invoke_mutabelle('MacLaurin', *args) |
|
276 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
277 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 278 |
def Mutabelle_Fun(*args): |
279 |
"""Mutabelle regression suite on Fun theory""" |
|
280 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 281 |
|
42393 | 282 |
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ') |
283 |
||
284 |
@scheduler() |
|
285 |
def mutabelle_scheduler(env): |
|
286 |
"""Scheduler for Mutabelle.""" |
|
287 |
return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs) |
|
42040 | 288 |
|
47896 | 289 |
|
42040 | 290 |
# Judgement Day configurations |
291 |
||
42095 | 292 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 293 |
|
294 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
295 |
"""Judgement Day regression suite""" |
|
296 |
||
297 |
isa = paths[0] |
|
298 |
dep_path = dep_paths[0] |
|
299 |
||
300 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
301 |
prepare_isabelle_repository(isa, env.settings.contrib, dep_path) |
|
302 |
||
303 |
output = {} |
|
304 |
success_rates = {} |
|
305 |
some_success = False |
|
306 |
||
307 |
for atp in judgement_day_provers: |
|
308 |
||
309 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
310 |
os.makedirs(log_dir) |
|
311 |
||
312 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
313 |
% (isa, log_dir, atp, opts, theory)) |
|
314 |
||
315 |
os.system(cmd) |
|
316 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
317 |
||
318 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
319 |
if len(percentages) == 2: |
|
320 |
success_rates[atp] = { |
|
321 |
'sledgehammer': int(percentages[0]), |
|
322 |
'metis': int(percentages[1])} |
|
323 |
if success_rates[atp]['sledgehammer'] > 0: |
|
324 |
some_success = True |
|
325 |
else: |
|
326 |
success_rates[atp] = {} |
|
327 |
||
328 |
||
329 |
data = {'success_rates': success_rates} |
|
330 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
331 |
# FIXME: summary? |
|
332 |
return (some_success, '', data, raw_attachments, None) |
|
333 |
||
334 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
335 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 336 |
def JD_NS(*args): |
337 |
"""Judgement Day regression suite NS""" |
|
338 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
339 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
340 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 341 |
def JD_FTA(*args): |
342 |
"""Judgement Day regression suite FTA""" |
|
343 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
344 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
345 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 346 |
def JD_Hoare(*args): |
347 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
348 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 349 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
350 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 351 |
def JD_SN(*args): |
352 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
353 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 354 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
355 |
|
42192 | 356 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
357 |
||
358 |
@scheduler() |
|
42197 | 359 |
def judgement_day_scheduler(env): |
42192 | 360 |
"""Scheduler for Judgement Day.""" |
361 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
362 |
||
363 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
364 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
365 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
366 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
367 |
ML_SYSTEM=smlnj |
48443 | 368 |
ML_HOME="/home/smlnj/110.74/bin" |
369 |
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024" |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
370 |
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
|
371 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
372 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
373 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
374 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
375 |
"""HOL image built with SML/NJ""" |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
376 |
return isabelle_build(*(args + ("-b", "HOL")), more_settings=smlnj_settings) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
377 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
378 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
379 |
def SML_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
380 |
"""SML/NJ build of all possible sessions""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
381 |
return isabelle_build(*(args + ("-j", "3", "-a")), more_settings=smlnj_settings) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
382 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
383 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
384 |
# Legacy Isabelle configurations |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
385 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
386 |
# distribution and documentation Build |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
387 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
388 |
@configuration(repos = [Isabelle], deps = []) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
389 |
def Distribution(env, case, paths, dep_paths, playground): |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
390 |
"""Build of distribution""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
391 |
## FIXME This is rudimentary; study Admin/CHECKLIST to complete this configuration accordingly |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
392 |
isabelle_home = paths[0] |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
393 |
(return_code, log) = env.run_process(path.join(isabelle_home, 'Admin', 'Release', 'makedist'), |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
394 |
REPOS = repositories.get(Isabelle).local_path, DISTPREFIX = os.getcwd()) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
395 |
return (return_code == 0, '', ## FIXME might add summary here |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
396 |
{}, {'log': log}, None) ## FIXME might add proper result here |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
397 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
398 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
399 |
def isabelle_dependency_only(env, case, paths, dep_paths, playground): |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
400 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
401 |
isabelle_home = paths[0] |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
402 |
result = path.join(isabelle_home, 'heaps') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
403 |
os.makedirs(result) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
404 |
for dep_path in dep_paths: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
405 |
subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result]) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
406 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
407 |
return (True, 'ok', {}, {}, result) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
408 |