Admin/mira.py
changeset 41652 4f4336e730b9
parent 41554 6a515ace714b
child 41894 7c4a4b02dbdb
equal deleted inserted replaced
41597:ced4f78bb728 41652:4f4336e730b9
   207     try:
   207     try:
   208         mutabelle_log = util.readfile(path.join(playground, 'log'))
   208         mutabelle_log = util.readfile(path.join(playground, 'log'))
   209     except IOError:
   209     except IOError:
   210         mutabelle_log = ''
   210         mutabelle_log = ''
   211 
   211 
   212     attachments = { 'log': log, 'mutabelle_log': mutabelle_log}
       
   213 
       
   214     return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
   212     return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
   215       {'timing': extract_isabelle_run_timing(log)}, {'log': log}, None)
   213       {'timing': extract_isabelle_run_timing(log)},
       
   214       {'log': log, 'mutabelle_log': mutabelle_log}, None)
   216 
   215 
   217 @configuration(repos = [Isabelle], deps = [(HOL, [0])])
   216 @configuration(repos = [Isabelle], deps = [(HOL, [0])])
   218 def Mutabelle_Relation(*args):
   217 def Mutabelle_Relation(*args):
   219     """Mutabelle regression suite on Relation theory"""
   218     """Mutabelle regression suite on Relation theory"""
   220     return invoke_mutabelle('Relation', *args)
   219     return invoke_mutabelle('Relation', *args)