Admin/mira.py
author wenzelm
Sat, 02 Jul 2011 23:31:07 +0200
changeset 44523 598b2c6ce13f
parent 44191 9970a4580d13
child 44554 08ccba00eb34
permissions -rw-r--r--
Thy_Header.read convenience;
haftmann@41790
     1
"""
haftmann@41790
     2
    Test configuration descriptions for mira.
haftmann@41790
     3
"""
haftmann@41790
     4
haftmann@41790
     5
import os
haftmann@41790
     6
from os import path
haftmann@41790
     7
from glob import glob
haftmann@41790
     8
import subprocess
krauss@43255
     9
from datetime import datetime
haftmann@41790
    10
import re
haftmann@41790
    11
haftmann@41790
    12
import util
krauss@43255
    13
from util import Lazy
haftmann@41790
    14
krauss@43255
    15
from mira.report import Report, Report_Content
krauss@43255
    16
from mira.case import Case
krauss@43255
    17
from mira.tools import tool
krauss@43694
    18
from mira import schedule, misc
krauss@43063
    19
from mira.environment import scheduler
krauss@43063
    20
haftmann@41790
    21
haftmann@41790
    22
# build and evaluation tools
haftmann@41790
    23
krauss@43692
    24
default_usedir_options = "$ISABELLE_USEDIR_OPTIONS -d pdf -g true -i true -t true"
haftmann@41790
    25
krauss@43692
    26
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps,
krauss@43692
    27
  usedir_options=default_usedir_options, more_settings=''):
krauss@43692
    28
krauss@43692
    29
    # prepare components
haftmann@41790
    30
    loc_contrib = path.expanduser(loc_contrib)
haftmann@41790
    31
    if not path.exists(loc_contrib):
haftmann@41790
    32
        raise IOError('Bad file: %s' % loc_contrib)
haftmann@41790
    33
    subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle])
haftmann@41790
    34
haftmann@41790
    35
    contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components')
haftmann@41790
    36
    if path.exists(contributed_components):
haftmann@41790
    37
        components = []
haftmann@41790
    38
        for component in util.readfile_lines(contributed_components):
haftmann@41790
    39
            loc_component = path.join(loc_isabelle, component)
haftmann@41790
    40
            if path.exists(loc_component):
haftmann@41790
    41
                components.append(loc_component)
haftmann@41790
    42
        writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a')
haftmann@41790
    43
        for component in components:
haftmann@41790
    44
            writer.write(component + '\n')
haftmann@41790
    45
        writer.close()
haftmann@41790
    46
krauss@43692
    47
    # provide existing dependencies
haftmann@41790
    48
    if loc_dependency_heaps:
haftmann@41790
    49
        isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT'
haftmann@41790
    50
    else:
haftmann@41790
    51
        isabelle_path = '$ISABELLE_OUTPUT'
haftmann@41790
    52
krauss@43692
    53
    # patch settings
haftmann@41790
    54
    extra_settings = '''
haftmann@41790
    55
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user"
haftmann@41790
    56
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
haftmann@41790
    57
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
haftmann@41790
    58
ISABELLE_PATH="%s"
haftmann@41790
    59
krauss@43692
    60
ISABELLE_USEDIR_OPTIONS="%s"
krauss@42973
    61
Z3_NON_COMMERCIAL="yes"
krauss@42977
    62
%s
krauss@43692
    63
''' % (isabelle_path, usedir_options, more_settings)
haftmann@41790
    64
haftmann@41790
    65
    writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a')
haftmann@41790
    66
    writer.write(extra_settings)
haftmann@41790
    67
    writer.close()
haftmann@41790
    68
haftmann@41790
    69
haftmann@41790
    70
def extract_isabelle_run_timing(logdata):
haftmann@41790
    71
haftmann@41790
    72
    def to_secs(h, m, s):
haftmann@41790
    73
        return (int(h) * 60 + int(m)) * 60 + int(s)
haftmann@41790
    74
    pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time'
krauss@43057
    75
    pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)'
haftmann@41790
    76
    t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)})
haftmann@41790
    77
             for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata))
krauss@43057
    78
    for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata):
haftmann@41790
    79
haftmann@41790
    80
        if name not in t:
haftmann@41790
    81
            t[name] = {}
haftmann@41790
    82
haftmann@41790
    83
        t[name]['threads'] = int(threads)
haftmann@41790
    84
        t[name]['elapsed_inner'] = elapsed
haftmann@41790
    85
        t[name]['cpu_inner'] = cpu
haftmann@41790
    86
        t[name]['gc'] = gc
krauss@43057
    87
        t[name]['factor'] = factor
haftmann@41790
    88
haftmann@41790
    89
    return t
haftmann@41790
    90
haftmann@41790
    91
haftmann@41790
    92
def extract_isabelle_run_summary(logdata):
haftmann@41790
    93
krauss@42765
    94
    re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE)
haftmann@41790
    95
    summary = '\n'.join(re_error.findall(logdata))
haftmann@41790
    96
    if summary == '':
haftmann@41790
    97
        summary = 'ok'
haftmann@41790
    98
haftmann@41790
    99
    return summary
haftmann@41790
   100
haftmann@41790
   101
krauss@43255
   102
@tool
krauss@43255
   103
def import_isatest_log(env, conf, logfile):
krauss@43255
   104
krauss@43255
   105
    """Imports isatest log file as a report."""
krauss@43255
   106
krauss@43255
   107
    def the_match(pat, text, name):
krauss@43255
   108
        match = re.search(pat, text)
krauss@43255
   109
        if not match: raise Exception('No match found for ' + name)
krauss@43255
   110
        return match.groups()
krauss@43255
   111
krauss@43255
   112
    def parse_date(d):
krauss@43255
   113
        return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y')
krauss@43255
   114
krauss@43255
   115
    log = util.readfile(logfile)
krauss@43255
   116
krauss@43255
   117
    (begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag')
krauss@43255
   118
    (isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version')
krauss@43255
   119
    (success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag')
krauss@43255
   120
    summary = extract_isabelle_run_summary(log)
krauss@43255
   121
    data = {'timing': extract_isabelle_run_timing(log)}
krauss@43255
   122
    atts = {'log': Lazy.simple(log)}
krauss@43255
   123
krauss@43255
   124
    content = Report_Content(summary, host, parse_date(begin_date),
krauss@43255
   125
      parse_date(end_date), Lazy.simple(data), atts)
krauss@43255
   126
    revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex())
krauss@43255
   127
    case = Case(conf, [revision])
krauss@43255
   128
krauss@43255
   129
    env.report_db.put(case, (success == 'successful'), content)
krauss@43255
   130
krauss@43255
   131
krauss@43255
   132
haftmann@41790
   133
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name):
haftmann@41790
   134
haftmann@41790
   135
    return env.run_process('%s/bin/isabelle' % isa_path, 'usedir',
haftmann@41790
   136
        isabelle_usedir_opts, base_image, dir_name)
haftmann@41790
   137
haftmann@41790
   138
haftmann@41790
   139
def isabelle_dependency_only(env, case, paths, dep_paths, playground):
haftmann@41790
   140
krauss@42978
   141
    isabelle_home = paths[0]
krauss@42978
   142
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   143
    os.makedirs(result)
haftmann@41790
   144
    for dep_path in dep_paths:
haftmann@41790
   145
        subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result])
haftmann@41790
   146
haftmann@41790
   147
    return (True, 'ok', {}, {}, result)
haftmann@41790
   148
haftmann@41790
   149
krauss@43692
   150
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground,
krauss@43692
   151
  usedir_options=default_usedir_options, more_settings=''):
haftmann@41790
   152
krauss@42978
   153
    isabelle_home = paths[0]
haftmann@41790
   154
    dep_path = dep_paths[0]
krauss@43692
   155
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   156
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42978
   157
    os.chdir(path.join(isabelle_home, 'src', subdir))
haftmann@41790
   158
krauss@42978
   159
    (return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img)
haftmann@41790
   160
krauss@42978
   161
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   162
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   163
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   164
haftmann@41790
   165
krauss@43692
   166
def isabelle_make(subdir, env, case, paths, dep_paths, playground, usedir_options=default_usedir_options,
krauss@43692
   167
  more_settings='', target='all', keep_results=False):
krauss@42979
   168
krauss@42979
   169
    isabelle_home = paths[0]
krauss@42979
   170
    dep_path = dep_paths[0] if dep_paths else None
krauss@43692
   171
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   172
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42979
   173
    os.chdir(path.join(isabelle_home, subdir))
krauss@42979
   174
krauss@42979
   175
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target)
krauss@42979
   176
krauss@43011
   177
    result = path.join(isabelle_home, 'heaps') if keep_results else None
krauss@42979
   178
    return (return_code == 0, extract_isabelle_run_summary(log),
krauss@43011
   179
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
krauss@42979
   180
krauss@42979
   181
krauss@43692
   182
def isabelle_makeall(env, case, paths, dep_paths, playground, usedir_options=default_usedir_options,
krauss@43692
   183
  more_settings='', target='all', make_options=()):
haftmann@41790
   184
krauss@43694
   185
    # FIXME!?
krauss@43694
   186
    if 'lxbroy10' in misc.hostnames():
krauss@43694
   187
        make_options += ('-j', '8')
krauss@43694
   188
        usedir_options += " -M 6 -q 2 -i false -d false"
krauss@43694
   189
        more_settings += '''
krauss@43694
   190
ML_PLATFORM="x86_64-linux"
krauss@43694
   191
ML_HOME="/home/polyml/polyml-svn/x86_64-linux"
krauss@43694
   192
ML_SYSTEM="polyml-5.4.1"
krauss@43694
   193
ML_OPTIONS="-H 8000 --gcthreads 6"
bulwahn@44191
   194
bulwahn@44191
   195
ISABELLE_GHC="/usr/bin/ghc"
krauss@43694
   196
'''
krauss@43694
   197
krauss@42978
   198
    isabelle_home = paths[0]
krauss@42979
   199
    dep_path = dep_paths[0] if dep_paths else None
krauss@43692
   200
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   201
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42978
   202
    os.chdir(isabelle_home)
haftmann@41790
   203
krauss@42985
   204
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,)))
haftmann@41790
   205
haftmann@41790
   206
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   207
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, None)
haftmann@41790
   208
haftmann@41790
   209
haftmann@41790
   210
# Isabelle configurations
haftmann@41790
   211
haftmann@41790
   212
@configuration(repos = [Isabelle], deps = [])
haftmann@41790
   213
def Pure(env, case, paths, dep_paths, playground):
haftmann@41790
   214
    """Pure image"""
haftmann@41790
   215
krauss@42978
   216
    isabelle_home = paths[0]
krauss@42978
   217
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, '')
krauss@42978
   218
    os.chdir(path.join(isabelle_home, 'src', 'Pure'))
haftmann@41790
   219
krauss@42978
   220
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure')
haftmann@41790
   221
krauss@42978
   222
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   223
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   224
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   225
haftmann@41790
   226
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   227
def FOL(*args):
haftmann@41790
   228
    """FOL image"""
haftmann@41790
   229
    return build_isabelle_image('FOL', 'Pure', 'FOL', *args)
haftmann@41790
   230
haftmann@41790
   231
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   232
def HOL(*args):
haftmann@41790
   233
    """HOL image"""
haftmann@41790
   234
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args)
haftmann@41790
   235
haftmann@41790
   236
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   237
def HOL_HOLCF(*args):
haftmann@41790
   238
    """HOL-HOLCF image"""
haftmann@41790
   239
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args)
haftmann@41790
   240
haftmann@41790
   241
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   242
def HOL_Nominal(*args):
haftmann@41790
   243
    """HOL-Nominal image"""
haftmann@41790
   244
    return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args)
haftmann@41790
   245
haftmann@41790
   246
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   247
def HOL_Word(*args):
haftmann@41790
   248
    """HOL-Word image"""
haftmann@41790
   249
    return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args)
haftmann@41790
   250
haftmann@41790
   251
@configuration(repos = [Isabelle], deps = [
haftmann@41790
   252
    (HOL, [0]),
haftmann@41790
   253
    (HOL_HOLCF, [0]),
haftmann@41790
   254
    (HOL_Nominal, [0]),
haftmann@41790
   255
    (HOL_Word, [0])
haftmann@41790
   256
  ])
haftmann@41790
   257
def AFP_images(*args):
haftmann@41790
   258
    """Isabelle images needed for the AFP"""
haftmann@41790
   259
    return isabelle_dependency_only(*args)
haftmann@41790
   260
krauss@43693
   261
@configuration(repos = [Isabelle], deps = [])
haftmann@41790
   262
def Isabelle_makeall(*args):
haftmann@41790
   263
    """Isabelle makeall"""
haftmann@41790
   264
    return isabelle_makeall(*args)
haftmann@41790
   265
haftmann@41790
   266
haftmann@41790
   267
# Mutabelle configurations
haftmann@41790
   268
haftmann@41790
   269
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground):
haftmann@41790
   270
haftmann@41790
   271
    """Mutant testing for counterexample generators in Isabelle"""
haftmann@41790
   272
haftmann@41790
   273
    (loc_isabelle,) = paths
haftmann@41790
   274
    (dep_isabelle,) = dep_paths
bulwahn@43993
   275
    more_settings = '''
bulwahn@43994
   276
ISABELLE_GHC="/usr/bin/ghc"
bulwahn@43993
   277
'''
bulwahn@43993
   278
    prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle,
bulwahn@43993
   279
      more_settings = more_settings)
haftmann@41790
   280
    os.chdir(loc_isabelle)
haftmann@41790
   281
    
haftmann@41790
   282
    (return_code, log) = env.run_process('bin/isabelle',
haftmann@41790
   283
      'mutabelle', '-O', playground, theory)
haftmann@41790
   284
    
haftmann@41790
   285
    try:
haftmann@41790
   286
        mutabelle_log = util.readfile(path.join(playground, 'log'))
haftmann@41790
   287
    except IOError:
haftmann@41790
   288
        mutabelle_log = ''
haftmann@41790
   289
krauss@43343
   290
    mutabelle_data = dict(
krauss@43343
   291
        (tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e})
krauss@43343
   292
        for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log))
krauss@43343
   293
haftmann@41790
   294
    return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
krauss@43343
   295
      {'mutabelle_results': {theory: mutabelle_data}},
haftmann@42521
   296
      {'log': log, 'mutabelle_log': mutabelle_log}, None)
haftmann@41790
   297
krauss@43789
   298
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   299
def Mutabelle_Relation(*args):
haftmann@41790
   300
    """Mutabelle regression suite on Relation theory"""
haftmann@41790
   301
    return invoke_mutabelle('Relation', *args)
haftmann@41790
   302
krauss@43789
   303
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   304
def Mutabelle_List(*args):
haftmann@41790
   305
    """Mutabelle regression suite on List theory"""
haftmann@41790
   306
    return invoke_mutabelle('List', *args)
haftmann@41790
   307
krauss@43789
   308
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   309
def Mutabelle_Set(*args):
haftmann@41790
   310
    """Mutabelle regression suite on Set theory"""
haftmann@41790
   311
    return invoke_mutabelle('Set', *args)
haftmann@41790
   312
krauss@43789
   313
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   314
def Mutabelle_Map(*args):
haftmann@41790
   315
    """Mutabelle regression suite on Map theory"""
haftmann@41790
   316
    return invoke_mutabelle('Map', *args)
haftmann@41790
   317
krauss@43789
   318
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   319
def Mutabelle_Divides(*args):
haftmann@41790
   320
    """Mutabelle regression suite on Divides theory"""
haftmann@41790
   321
    return invoke_mutabelle('Divides', *args)
haftmann@41790
   322
krauss@43789
   323
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   324
def Mutabelle_MacLaurin(*args):
haftmann@41790
   325
    """Mutabelle regression suite on MacLaurin theory"""
haftmann@41790
   326
    return invoke_mutabelle('MacLaurin', *args)
haftmann@41790
   327
krauss@43789
   328
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   329
def Mutabelle_Fun(*args):
haftmann@41790
   330
    """Mutabelle regression suite on Fun theory"""
haftmann@41790
   331
    return invoke_mutabelle('Fun', *args)
krauss@42910
   332
krauss@43256
   333
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ')
krauss@43256
   334
krauss@43256
   335
@scheduler()
krauss@43256
   336
def mutabelle_scheduler(env):
krauss@43256
   337
    """Scheduler for Mutabelle."""
krauss@43256
   338
    return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs)
krauss@42910
   339
krauss@42910
   340
# Judgement Day configurations
krauss@42910
   341
krauss@42959
   342
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices')
krauss@42910
   343
krauss@42910
   344
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground):
krauss@42910
   345
    """Judgement Day regression suite"""
krauss@42910
   346
krauss@42910
   347
    isa = paths[0]
krauss@42910
   348
    dep_path = dep_paths[0]
krauss@42910
   349
krauss@42910
   350
    os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd
krauss@42910
   351
    prepare_isabelle_repository(isa, env.settings.contrib, dep_path)
krauss@42910
   352
krauss@42910
   353
    output = {}
krauss@42910
   354
    success_rates = {}
krauss@42910
   355
    some_success = False
krauss@42910
   356
krauss@42910
   357
    for atp in judgement_day_provers:
krauss@42910
   358
krauss@42910
   359
        log_dir = path.join(playground, 'mirabelle_log_' + atp)
krauss@42910
   360
        os.makedirs(log_dir)
krauss@42910
   361
krauss@42910
   362
        cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy'
krauss@42910
   363
               % (isa, log_dir, atp, opts, theory))
krauss@42910
   364
krauss@42910
   365
        os.system(cmd)
krauss@42910
   366
        output[atp] = util.readfile(path.join(log_dir, theory + '.log'))
krauss@42910
   367
krauss@42910
   368
        percentages = list(re.findall(r'Success rate: (\d+)%', output[atp]))
krauss@42910
   369
        if len(percentages) == 2:
krauss@42910
   370
            success_rates[atp] = {
krauss@42910
   371
                'sledgehammer': int(percentages[0]),
krauss@42910
   372
                'metis': int(percentages[1])}
krauss@42910
   373
            if success_rates[atp]['sledgehammer'] > 0:
krauss@42910
   374
                some_success = True
krauss@42910
   375
        else:
krauss@42910
   376
            success_rates[atp] = {}
krauss@42910
   377
krauss@42910
   378
krauss@42910
   379
    data = {'success_rates': success_rates}
krauss@42910
   380
    raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers)
krauss@42910
   381
    # FIXME: summary?
krauss@42910
   382
    return (some_success, '', data, raw_attachments, None)
krauss@42910
   383
krauss@42910
   384
krauss@43789
   385
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   386
def JD_NS(*args):
krauss@42910
   387
    """Judgement Day regression suite NS"""
krauss@42910
   388
    return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args)
krauss@42910
   389
krauss@43789
   390
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   391
def JD_FTA(*args):
krauss@42910
   392
    """Judgement Day regression suite FTA"""
krauss@42910
   393
    return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args)
krauss@42910
   394
krauss@43789
   395
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   396
def JD_Hoare(*args):
krauss@42910
   397
    """Judgement Day regression suite Hoare"""
krauss@42913
   398
    return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args)
krauss@42910
   399
krauss@43789
   400
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   401
def JD_SN(*args):
krauss@42910
   402
    """Judgement Day regression suite SN"""
krauss@42913
   403
    return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args)
krauss@42910
   404
krauss@42980
   405
krauss@43063
   406
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ')
krauss@43063
   407
krauss@43063
   408
@scheduler()
krauss@43068
   409
def judgement_day_scheduler(env):
krauss@43063
   410
    """Scheduler for Judgement Day."""
krauss@43063
   411
    return schedule.age_scheduler(env, 'Isabelle', JD_confs)
krauss@43063
   412
krauss@43063
   413
krauss@42980
   414
# SML/NJ
krauss@42980
   415
krauss@42980
   416
smlnj_settings = '''
krauss@42980
   417
ML_SYSTEM=smlnj
krauss@42980
   418
ML_HOME="/home/smlnj/110.72/bin"
krauss@42980
   419
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256"
krauss@42980
   420
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
krauss@42980
   421
'''
krauss@42980
   422
krauss@42980
   423
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   424
def SML_HOL(*args):
krauss@42980
   425
    """HOL image built with SML/NJ"""
krauss@43011
   426
    return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True)
krauss@42980
   427
krauss@42980
   428
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   429
def SML_makeall(*args):
krauss@42980
   430
    """Makeall built with SML/NJ"""
krauss@43002
   431
    return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3'))