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
|
#=====================================================
# Copyright (C) 2011-2012 Andrea Arteaga <andyspiros@gmail.com>
#=====================================================
#
# 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 the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
import sys, os, time, subprocess as sp
from os.path import join as pjoin
if not locals().has_key('initialized'):
initialized = True
isroot = os.getuid() == 0
modulename = sys.argv[1]
inputfile = os.path.realpath(sys.argv[2])
# Script directories
curdir = os.path.abspath('.')
scriptdir = os.path.dirname(os.path.realpath(__file__))
if os.environ.has_key('BTLDIR'):
btldir = os.environ['BTLDIR']
else:
btldir = '/usr/include/btl'
# Library directory (lib vs. lib32 vs. lib64)
libdir = sp.Popen \
('ABI=$(portageq envvar ABI); echo `portageq envvar LIBDIR_$ABI`', \
stdout=sp.PIPE, shell=True).communicate()[0].strip()
if not libdir:
libdir = 'usr/lib'
else:
libdir = 'usr/' + libdir
# Parse arguments
passargs = sys.argv[3:]
for i,a in enumerate(passargs):
if a in ('-d', '--directory'):
basedir = pjoin(curdir, passargs[i+1])
passargs = passargs[:i] + passargs[i+2:]
break
if a in ('-c', '--clean'):
clean = True
passargs = passargs[:i] + passargs[i+1:]
# Clean flag
if not locals().has_key('clean'):
clean = False
# Storage directories
if not locals().has_key('basedir'):
basedirb = pjoin(os.environ['HOME'], '.numbench') \
+ '/numbench_' + modulename + '_' + time.strftime('%Y-%m-%d')
if os.path.exists(basedirb):
n = 1
while True:
basedir = basedirb + "_%i" % n
if not os.path.exists(basedir):
break
n += 1
else:
basedir = basedirb
del basedirb
testsdir, rootsdir, pkgsdir, reportdir, logdir = tuple([pjoin(basedir, i) \
for i in ('tests', 'roots', 'packages', 'report', 'log')])
|