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
|
##############################################################################
#
# Copyright (c) 2003-2018 by The University of Queensland
# http://www.uq.edu.au
#
# Primary Business: Queensland, Australia
# Licensed under the Apache License, version 2.0
# http://www.apache.org/licenses/LICENSE-2.0
#
# Development until 2012 by Earth Systems Science Computational Center (ESSCC)
# Development 2012-2013 by School of Earth Sciences
# Development from 2014 by Centre for Geoscience Computing (GeoComp)
#
##############################################################################
from grouptest import GroupTest
import os
Import('*')
local_env = env.Clone()
example_files = example_files_allow_mpi + example_files_no_mpi
src_dir = local_env.Dir('.').srcnode().abspath
test_dir= Dir('test', local_env.Dir('.'))
cc=Command(test_dir, [], Mkdir("$TARGET"))
# create copy of all non-py files:
# We need this because of cblib.py which needs to be present for other tests
# to work
data_files=[]
for i in example_deps:
f_in=File(os.path.join(src_dir,i))
f_out=File(i,test_dir)
data_files.append(Command(f_out, f_in, Copy("$TARGET", "$SOURCE")))
programs=[]
copies=[]
for i in example_files:
if local_env['mpi']=='none' or not i in example_files_no_mpi:
f_in=File(os.path.join(src_dir,i))
f_out=File(i, test_dir)
c=Command(f_out, f_in, Copy("$TARGET", "$SOURCE"))
copies+=c
programs+=local_env.RunPyExample(c)
env.Alias('build_py_tests', data_files)
env.Alias('build_py_tests', copies)
env.Alias('py_tests', programs)
Depends(programs, data_files)
Depends(cc, data_files)
# Add group of tests
dirs = set([os.path.split(i)[0] for i in example_files])
for d in dirs:
single_runs=[]
runs=[]
for i in example_files_no_mpi:
if i.startswith(d):
single_runs.append(os.path.split(i)[1])
for i in example_files_allow_mpi:
if i.startswith(d):
runs.append(os.path.split(i)[1])
TestGroups.append(GroupTest(d, "$PYTHONRUNNER ", (), "", os.path.join("$BATCH_ROOT/doc/examples",d), runs, single_runs))
|