/usr/lib/python2.7/dist-packages/asrun/astout.py is in code-aster-run 1.13.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | # -*- coding: utf-8 -*-
# ==============================================================================
# COPYRIGHT (C) 1991 - 2003 EDF R&D WWW.CODE-ASTER.ORG
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
# (AT YOUR OPTION) ANY LATER VERSION.
#
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
#
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
# ==============================================================================
"""
Defines a function to run a list of testcases
"""
import os
import os.path as osp
import random
import cPickle
from asrun.common.i18n import _
from asrun.mystring import print3, ufmt
from asrun.build import AsterBuild
from asrun.thread import Dispatcher
from asrun.distrib import DistribTestTask
from asrun.repart import get_hostrc
from asrun.common_func import get_tmpname
from asrun.maintenance import get_aster_version, repr_vers, get_diagnostic
from asrun.common.utils import get_list, now, YES_VALUES
fmt_head = '%s %s %s %s %s %s' % (_(u"testcase").center(12), _(u"result").center(18),
_(u"cpu").rjust(8), _(u"sys").rjust(8), _(u"cpu+sys").rjust(8), _(u"elapsed").rjust(8) )
fmt_resu = '%-12s %-18s %8.2f %8.2f %8.2f %8.2f'
fmt_res2 = '%%4d %s %%4d %s %%8.2f %%8.2f %%8.2f %%8.2f' \
% (_("tests").ljust(7), _("errors").ljust(10))
fmt_tot = '-'*12+' '+'-'*18+' '+'-'*8+' '+'-'*8+' '+'-'*8+' '+'-'*8
def RunAstout(run, conf, prof, mpi_info, numthread='auto', **kargs):
"""Run a list of test cases...
"""
run.print_timer = True
# 1. ----- initializations
REPREF = prof.get_version_path()
# 1.1. get AsterBuild object
build = AsterBuild(run, conf)
# 1.2. rep_trav from profile or from run[...]
reptrav = mpi_info.reptrav()
run.Mess(_(u'Code_Aster tests execution'), 'TITLE')
mpi_info.set_cpuinfo(1, 1)
# ----- how many threads ?
try:
numthread = int(numthread)
except (TypeError, ValueError):
numthread = run.GetCpuInfo('numthread')
# 1.3. content of the profile
ltest = osp.join(reptrav, 'tests.list')
if not prof.Get('D', typ='list'):
run.Mess(_(u'no list of tests found'), '<E>_NO_TEST_LIST')
else:
for dli in prof.Get('D', typ='list'):
if run.IsRemote(dli['path']):
tmplist = get_tmpname(run, run['tmp_user'], basename='list')
run.ToDelete(tmplist)
kret = run.Copy(tmplist, dli['path'])
run.FileCat(tmplist, ltest)
else:
tmplist = run.PathOnly(dli['path'])
run.FileCat(tmplist, ltest)
if not prof.Get('D', typ='rep_test'):
reptest = []
else:
reptest = [r['path'] for r in prof.Get('D', typ='rep_test')]
if not prof.Get('R', typ='resu_test'):
run.Mess(_(u'no result directory found'), '<E>_NO_RESU_DIR')
else:
resutest = prof.Get('R', typ='resu_test')[0]['path']
if run.IsRemote(resutest):
run.Mess(_(u'the result directory must not be on a remote host'), '<F>_ERROR')
resutest = run.PathOnly(resutest)
run.MkDir(resutest)
run.Delete(osp.join(resutest, 'RESULTAT'))
run.Delete(osp.join(resutest, 'NOOK'))
flashdir = osp.join(resutest, 'flash')
prfl = prof.Get('R', typ='flash')
if prfl:
if prfl[0]['path'] == "None":
flashdir = None
else:
flashdir = prfl[0]['path']
facmtps = 1.
nbmaxnook = 5
cpresok = 'RESNOOK'
try:
if prof['facmtps'][0] != '':
facmtps = float(prof['facmtps'][0])
except ValueError:
run.Mess(_(u'incorrect value for %s : %s') % ('facmtps', prof['facmtps'][0]))
try:
if prof['nbmaxnook'][0] != '':
nbmaxnook = int(prof['nbmaxnook'][0])
except ValueError:
run.Mess(_(u'incorrect value for %s : %s') % ('nbmaxnook', prof['nbmaxnook'][0]))
if prof['cpresok'][0] != '':
cpresok = prof['cpresok'][0]
run.CheckOK()
# get the list of the tests to execute
iret, list_tests = get_list(ltest, unique=True)
if iret != 0:
run.Mess(_(u'error during reading file : %s') % ltest, '<F>_ERROR')
nbtest = len(list_tests)
# should we run only nook tests ?
if run['only_nook'] or prof['only_nook'][0] in YES_VALUES:
l_dirs = reptest + [resutest]
old_run_result = get_diagnostic(run, build, l_dirs, list_tests)
run.DBG('get_diagnostic result', old_run_result, all=True)
nbini = len(list_tests)
list_tests = []
for test, dres in old_run_result.items():
if test.startswith('__'):
continue
if run.GetGrav(dres['diag']) >= run.GetGrav('NOOK'):
list_tests.append(test)
nbtest = len(list_tests)
print3(_(u"""
--- %d test-cases to run initially
%d test-cases previously failed (or their results have not been found) and will be run again
""") % (nbini, nbtest))
random.shuffle(list_tests)
# suivi des calculs partagé entre 'numthread' threads
tit = _(u"Checking hosts")
hostrc = get_hostrc(run, prof)
run.timer.Start(tit)
n_avail, n_tot = hostrc.CheckHosts(run, numthread=numthread)
run.timer.Stop(tit)
run.Mess(_(u'Number of available hosts : %d/%d') % (n_avail, n_tot), "SILENT")
if n_avail < 1:
run.Mess(_(u"No available host. Run cancelled."), "<F>_INVALID_PARAMETER")
# timeout before rejected a job = tpsjob
try:
timeout = prof.get_timeout()
except Exception, reason:
run.Mess(_(u"incorrect value for tpsjob : %s") % reason, '<F>_INVALID_PARAMETER')
# print a summary
summary = _(u"""
--- %d test-cases to run
--- Run started at %s
--- Parameters used for this run :
Directory of reference files : %s
Directory of developper files : %s
Directory to copy results : %s
Directory for job files : %s
Code_Aster version : %s (%s)
Executable filename : %s
Commands catalogue directory : %s
Elements catalogue filename : %s
Maximum number of errors (NOOK) : %d
Criteria to copy result files : %s
Time multiplicative factor : %f
Working directory : %s
Submission timeout (seconds) : %.0f""")
sum_thread = _(u""" Number of threads : %d""")
sum_rc = _(u""" Available hosts (resources) : %s""")
sum_end = _(u"""
--- All tests finished at %s
--- Results :
""")
fmt_spup = _(u"""
--- Speed-up is %.2f
""")
version_number = '.'.join(get_aster_version(REPREF)[:3])
info_start = ( nbtest, now(),
', '.join([osp.join(REPREF, path) for path in conf['SRCTEST']]),
', '.join(reptest), resutest, flashdir,
prof.get_version_path(), version_number,
kargs['exe'], kargs['cmde'], kargs['ele'],
nbmaxnook, cpresok, facmtps, reptrav, timeout )
txt_summary = [ ufmt(summary, *info_start), ]
if numthread > 1:
txt_summary.append( sum_thread % numthread )
if hostrc:
host_str = ', '.join(['%(host)s (%(cpu)d)' % hostrc.GetConfig(h) \
for h in hostrc.get_all_connected_hosts()])
txt_summary.append( sum_rc % host_str )
txt_summary.append('')
text_summary = os.linesep.join(txt_summary)
print3(text_summary)
# change directory before running sub-execution (reptrav will be deleted !)
os.chdir(run['rep_trav'])
# ----- Execute tests in parallel using a Dispatcher object
# elementary task...
task = DistribTestTask(#IN
run=run, prof=prof, conf=conf,
hostrc=hostrc,
nbmaxitem=0, timeout=timeout,
REPREF=REPREF, reptest=reptest, resutest=resutest, flashdir=flashdir,
nbmaxnook=nbmaxnook, cpresok=cpresok, facmtps=facmtps,
reptrav=reptrav,
info=1,
# OUT
nbnook=[0,]*numthread, test_result=[])
# ... and dispatch task on 'list_tests'
tit = _(u'Tests execution')
run.timer.Start(tit)
couples = zip(list_tests, [None]*nbtest)
astout = Dispatcher(couples, task, numthread=numthread)
run.DBG(astout.report())
cpu_dt, sys_dt, tot_dt = run.timer.StopAndGet(tit)
# Summary
run.Mess(_(u'Summary of the run'), 'TITLE')
print3(text_summary)
print3(sum_end % now())
t = [0., 0., 0., 0.]
print3(fmt_head)
print3(fmt_tot)
dict_resu = {
'__global__' : {
'astest_dir' : reptest,
's_astest_dir' : ', '.join(reptest),
'nbtest' : len(task.test_result),
'err_all' : sum(task.nbnook),
'err_noresu' : 0,
'err_vers' : 0,
'version' : version_number,
}
}
task.test_result.sort()
for result in task.test_result:
lin = result[:-1]
del lin[1] # job, opts, diag, tcpu, tsys, ttot, telap, output
t[0] += lin[2]
t[1] += lin[3]
t[2] += lin[4]
t[3] += lin[5]
print3(fmt_resu % tuple(lin))
dict_resu[lin[0]] = {
'test' : lin[0],
'diag' : lin[1],
'tcpu' : lin[2],
'tsys' : lin[3],
'ttot' : lin[4],
'vers' : repr_vers(version_number),
}
print3(fmt_tot)
print3(fmt_res2 % (len(task.test_result), sum(task.nbnook), t[0], t[1], t[2], t[3]))
# write diag.pick
if prof['diag_pickled'][0] != '':
pick = open(prof['diag_pickled'][0], 'w')
cPickle.dump(dict_resu, pick)
# check the number of tests really run
if len(task.test_result) != len(list_tests):
run.Mess(_(u'%d test-cases to run, %d really run !') \
% (len(list_tests), len(task.test_result)), '<E>_ERROR')
# force global diagnostic to <F>_ERROR if errors occured
if sum(task.nbnook) > 0:
run.diag = '<E>_ERROR'
spup = 0.
if tot_dt != 0.:
spup = t[3]/tot_dt
print3(fmt_spup % spup)
if hostrc is not None:
print3(os.linesep + hostrc.repr_history())
run.CheckOK()
run.Mess(_(u'All tests run successfully'), 'OK')
|