author | wenzelm |
Fri, 25 Sep 2015 19:54:51 +0200 | |
changeset 61266 | eb9522a9d997 |
parent 59993 | 8f6cacc87f42 |
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 |
|
13 |
||
42823 | 14 |
from mira import schedule, misc |
42192 | 15 |
from mira.environment import scheduler |
46931 | 16 |
from mira import repositories |
42192 | 17 |
|
41542 | 18 |
# build and evaluation tools |
19 |
||
50599 | 20 |
DEFAULT_TIMEOUT = 2 * 60 * 60 |
21 |
SMLNJ_TIMEOUT = 72 * 60 * 60 |
|
22 |
||
50598 | 23 |
def prepare_isabelle_repository(loc_isabelle, loc_dependency_heaps, more_settings=''): |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
24 |
|
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
25 |
# patch settings |
41542 | 26 |
extra_settings = ''' |
48785
1e384f729045
restored ISABELLE_OUTPUT etc -- still relevant at least for mira.py itself
krauss
parents:
48783
diff
changeset
|
27 |
|
50596 | 28 |
init_components "/home/isabelle/contrib" "$ISABELLE_HOME/Admin/components/main" |
29 |
init_components "/home/isabelle/contrib" "$ISABELLE_HOME/Admin/components/optional" |
|
30 |
init_components "/home/isabelle/contrib" "$ISABELLE_HOME/Admin/components/nonfree" |
|
48182 | 31 |
|
48783 | 32 |
''' + more_settings |
41542 | 33 |
|
34 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
35 |
writer.write(extra_settings) |
|
36 |
writer.close() |
|
37 |
||
38 |
||
45164 | 39 |
def isabelle_getenv(isabelle_home, var): |
40 |
||
41 |
_, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var) |
|
42 |
return out.split('=', 1)[1].strip() |
|
43 |
||
44 |
||
41542 | 45 |
def extract_isabelle_run_timing(logdata): |
46 |
||
47 |
def to_secs(h, m, s): |
|
48 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
49 |
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
|
50 |
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 | 51 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
52 |
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
|
53 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 54 |
|
55 |
if name not in t: |
|
56 |
t[name] = {} |
|
57 |
||
58 |
t[name]['threads'] = int(threads) |
|
59 |
t[name]['elapsed_inner'] = elapsed |
|
60 |
t[name]['cpu_inner'] = cpu |
|
61 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
62 |
t[name]['factor'] = factor |
41542 | 63 |
|
64 |
return t |
|
65 |
||
66 |
||
67 |
def extract_isabelle_run_summary(logdata): |
|
68 |
||
41894 | 69 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 70 |
summary = '\n'.join(re_error.findall(logdata)) |
71 |
if summary == '': |
|
72 |
summary = 'ok' |
|
73 |
||
74 |
return summary |
|
75 |
||
76 |
||
45164 | 77 |
def extract_image_size(isabelle_home): |
78 |
||
79 |
isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT') |
|
50595 | 80 |
if not path.exists(isabelle_output): |
81 |
return {} |
|
82 |
||
45164 | 83 |
return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log") |
84 |
||
85 |
def extract_report_data(isabelle_home, logdata): |
|
86 |
||
87 |
return { |
|
88 |
'timing': extract_isabelle_run_timing(logdata), |
|
89 |
'image_size': extract_image_size(isabelle_home) } |
|
90 |
||
91 |
||
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
92 |
def isabelle_build(env, case, paths, dep_paths, playground, *cmdargs, **kwargs): |
41542 | 93 |
|
50599 | 94 |
more_settings = kwargs.get('more_settings', '') |
95 |
keep_results = kwargs.get('keep_results', True) |
|
96 |
timeout = kwargs.get('timeout', DEFAULT_TIMEOUT) |
|
41542 | 97 |
|
42114 | 98 |
isabelle_home = paths[0] |
41542 | 99 |
|
57179
011955e7846b
mira: USER_HOME must exist for building JEdit documentation
noschinl
parents:
57172
diff
changeset
|
100 |
home_user_dir = path.join(isabelle_home, 'home_user') |
011955e7846b
mira: USER_HOME must exist for building JEdit documentation
noschinl
parents:
57172
diff
changeset
|
101 |
os.makedirs(home_user_dir) |
011955e7846b
mira: USER_HOME must exist for building JEdit documentation
noschinl
parents:
57172
diff
changeset
|
102 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
103 |
# copy over build results from dependencies |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
104 |
heap_dir = path.join(isabelle_home, 'heaps') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
105 |
classes_dir = path.join(heap_dir, 'classes') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
106 |
os.makedirs(classes_dir) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
107 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
108 |
for dep_path in dep_paths: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
109 |
subprocess.check_call(['cp', '-a'] + glob(dep_path + '/*') + [heap_dir]) |
45164 | 110 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
111 |
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
|
112 |
jars = glob(path.join(classes_dir, 'ext', '*.jar')) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
113 |
if jars: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
114 |
subprocess.check_call(['touch'] + jars) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
115 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
116 |
# misc preparations |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
117 |
if 'lxbroy10' in misc.hostnames(): # special settings for lxbroy10 |
42823 | 118 |
more_settings += ''' |
43334
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
119 |
ISABELLE_GHC="/usr/bin/ghc" |
42823 | 120 |
''' |
121 |
||
50598 | 122 |
prepare_isabelle_repository(isabelle_home, None, more_settings=more_settings) |
42114 | 123 |
os.chdir(isabelle_home) |
41542 | 124 |
|
50600
48c0c3bc40dd
tuned "use build timeout": tuples cannot be concatenated
noschinl
parents:
50599
diff
changeset
|
125 |
args = (['-o', 'timeout=%s' % timeout] if timeout is not None else []) + list(cmdargs) |
50599 | 126 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
127 |
# invoke build tool |
57559
841f41710066
mira.py: building jEdit plugin is required for makeall
noschinl
parents:
57179
diff
changeset
|
128 |
(return_code, log1) = env.run_process('%s/bin/isabelle' % isabelle_home, 'jedit', '-bf', |
57172
bcc6dc6c1d1c
set USER_HOME to affect also ISABELLE_PATH et al
noschinl
parents:
53658
diff
changeset
|
129 |
USER_HOME=home_user_dir) |
57559
841f41710066
mira.py: building jEdit plugin is required for makeall
noschinl
parents:
57179
diff
changeset
|
130 |
(return_code, log2) = env.run_process('%s/bin/isabelle' % isabelle_home, 'build', '-s', '-v', *args, |
841f41710066
mira.py: building jEdit plugin is required for makeall
noschinl
parents:
57179
diff
changeset
|
131 |
USER_HOME=home_user_dir) |
841f41710066
mira.py: building jEdit plugin is required for makeall
noschinl
parents:
57179
diff
changeset
|
132 |
log = log1 + log2 |
41542 | 133 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
134 |
# collect report |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
135 |
return (return_code == 0, extract_isabelle_run_summary(log), |
49175
eab51f249c70
option for discarding build results, enabled in particular for Isabelle_makeall
krauss
parents:
48848
diff
changeset
|
136 |
extract_report_data(isabelle_home, log), {'log': log}, heap_dir if keep_results else None) |
41542 | 137 |
|
138 |
||
43689 | 139 |
|
140 |
# Isabelle configurations |
|
141 |
||
142 |
@configuration(repos = [Isabelle], deps = []) |
|
143 |
def Pure(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
144 |
"""Pure Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
145 |
return isabelle_build(*(args + ("-b", "Pure"))) |
43689 | 146 |
|
41542 | 147 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
148 |
def HOL(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
149 |
"""HOL Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
150 |
return isabelle_build(*(args + ("-b", "HOL"))) |
41542 | 151 |
|
46934 | 152 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
153 |
def HOL_Library(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
154 |
"""HOL Library""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
155 |
return isabelle_build(*(args + ("-b", "HOL-Library"))) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
156 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
157 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
48688 | 158 |
def HOLCF(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
159 |
"""HOLCF""" |
48688 | 160 |
return isabelle_build(*(args + ("-b", "HOLCF"))) |
46934 | 161 |
|
162 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
|
163 |
def ZF(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
164 |
"""HOLCF""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
165 |
return isabelle_build(*(args + ("-b", "ZF"))) |
46934 | 166 |
|
167 |
||
47895 | 168 |
settings64=''' |
50593 | 169 |
# enforce 64 bit, overriding smart detection |
170 |
ML_PLATFORM="$ISABELLE_PLATFORM64" |
|
171 |
ML_HOME="$(dirname $ML_HOME)/$ML_PLATFORM" |
|
47895 | 172 |
''' |
173 |
||
47897 | 174 |
@configuration(repos = [Isabelle], deps = []) |
41542 | 175 |
def Isabelle_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
176 |
"""Build all sessions""" |
49175
eab51f249c70
option for discarding build results, enabled in particular for Isabelle_makeall
krauss
parents:
48848
diff
changeset
|
177 |
return isabelle_build(*(args + ("-j", "6", "-o", "threads=4", "-a")), more_settings=settings64, keep_results=False) |
46934 | 178 |
|
46931 | 179 |
|
41542 | 180 |
# Mutabelle configurations |
181 |
||
182 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
183 |
||
184 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
185 |
||
186 |
(loc_isabelle,) = paths |
|
187 |
(dep_isabelle,) = dep_paths |
|
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
188 |
more_settings = ''' |
43153
cbb748ccf81b
changing the mira setting again for the mutabelle configuration
bulwahn
parents:
43152
diff
changeset
|
189 |
ISABELLE_GHC="/usr/bin/ghc" |
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
190 |
''' |
50598 | 191 |
prepare_isabelle_repository(loc_isabelle, dep_isabelle, more_settings = more_settings) |
41542 | 192 |
os.chdir(loc_isabelle) |
193 |
||
194 |
(return_code, log) = env.run_process('bin/isabelle', |
|
195 |
'mutabelle', '-O', playground, theory) |
|
196 |
||
197 |
try: |
|
198 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
199 |
except IOError: |
|
200 |
mutabelle_log = '' |
|
201 |
||
42472 | 202 |
mutabelle_data = dict( |
203 |
(tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e}) |
|
204 |
for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log)) |
|
205 |
||
41542 | 206 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
42472 | 207 |
{'mutabelle_results': {theory: mutabelle_data}}, |
41652 | 208 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
41542 | 209 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
210 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 211 |
def Mutabelle_Relation(*args): |
212 |
"""Mutabelle regression suite on Relation theory""" |
|
213 |
return invoke_mutabelle('Relation', *args) |
|
214 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
215 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 216 |
def Mutabelle_List(*args): |
217 |
"""Mutabelle regression suite on List theory""" |
|
218 |
return invoke_mutabelle('List', *args) |
|
219 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
220 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 221 |
def Mutabelle_Set(*args): |
222 |
"""Mutabelle regression suite on Set theory""" |
|
223 |
return invoke_mutabelle('Set', *args) |
|
224 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
225 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 226 |
def Mutabelle_Map(*args): |
227 |
"""Mutabelle regression suite on Map theory""" |
|
228 |
return invoke_mutabelle('Map', *args) |
|
229 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
230 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 231 |
def Mutabelle_Divides(*args): |
232 |
"""Mutabelle regression suite on Divides theory""" |
|
233 |
return invoke_mutabelle('Divides', *args) |
|
234 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
235 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 236 |
def Mutabelle_MacLaurin(*args): |
237 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
238 |
return invoke_mutabelle('MacLaurin', *args) |
|
239 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
240 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 241 |
def Mutabelle_Fun(*args): |
242 |
"""Mutabelle regression suite on Fun theory""" |
|
243 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 244 |
|
42393 | 245 |
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ') |
246 |
||
247 |
@scheduler() |
|
248 |
def mutabelle_scheduler(env): |
|
249 |
"""Scheduler for Mutabelle.""" |
|
250 |
return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs) |
|
42040 | 251 |
|
47896 | 252 |
|
42040 | 253 |
# Judgement Day configurations |
254 |
||
42095 | 255 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 256 |
|
257 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
258 |
"""Judgement Day regression suite""" |
|
259 |
||
260 |
isa = paths[0] |
|
261 |
dep_path = dep_paths[0] |
|
262 |
||
263 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
50594
3f794789df0e
removed obsolete parameter for contrib dir; hard-coding is not a problem
krauss
parents:
50593
diff
changeset
|
264 |
prepare_isabelle_repository(isa, dep_path) |
42040 | 265 |
|
266 |
output = {} |
|
267 |
success_rates = {} |
|
268 |
some_success = False |
|
269 |
||
270 |
for atp in judgement_day_provers: |
|
271 |
||
272 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
273 |
os.makedirs(log_dir) |
|
274 |
||
275 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
276 |
% (isa, log_dir, atp, opts, theory)) |
|
277 |
||
278 |
os.system(cmd) |
|
279 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
280 |
||
281 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
282 |
if len(percentages) == 2: |
|
283 |
success_rates[atp] = { |
|
284 |
'sledgehammer': int(percentages[0]), |
|
285 |
'metis': int(percentages[1])} |
|
286 |
if success_rates[atp]['sledgehammer'] > 0: |
|
287 |
some_success = True |
|
288 |
else: |
|
289 |
success_rates[atp] = {} |
|
290 |
||
291 |
||
292 |
data = {'success_rates': success_rates} |
|
293 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
294 |
# FIXME: summary? |
|
295 |
return (some_success, '', data, raw_attachments, None) |
|
296 |
||
297 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
298 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 299 |
def JD_NS(*args): |
300 |
"""Judgement Day regression suite NS""" |
|
301 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
302 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
303 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 304 |
def JD_FTA(*args): |
305 |
"""Judgement Day regression suite FTA""" |
|
306 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
307 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
308 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 309 |
def JD_Hoare(*args): |
310 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
311 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 312 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
313 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 314 |
def JD_SN(*args): |
315 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
316 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 317 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
318 |
|
42192 | 319 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
320 |
||
321 |
@scheduler() |
|
42197 | 322 |
def judgement_day_scheduler(env): |
42192 | 323 |
"""Scheduler for Judgement Day.""" |
324 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
325 |
||
326 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
327 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
328 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
329 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
330 |
ML_SYSTEM=smlnj |
53658 | 331 |
ML_HOME="/home/smlnj/110.76/bin" |
48443 | 332 |
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
|
333 |
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
|
334 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
335 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
336 |
@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
|
337 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
338 |
"""HOL image built with SML/NJ""" |
50599 | 339 |
return isabelle_build(*(args + ("-b", "HOL")), more_settings=smlnj_settings, timeout=SMLNJ_TIMEOUT) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
340 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
341 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
342 |
def SML_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
343 |
"""SML/NJ build of all possible sessions""" |
50599 | 344 |
return isabelle_build(*(args + ("-j", "3", "-a")), more_settings=smlnj_settings, timeout=SMLNJ_TIMEOUT) |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
345 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
346 |