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