1 |
Import('*') |
2 |
|
3 |
program_name = 'finley_UnitTest' |
4 |
|
5 |
local_env=env.Copy() |
6 |
|
7 |
src_dir = local_env.Dir('.').srcnode().abspath |
8 |
|
9 |
import os |
10 |
filenames = os.listdir(src_dir) |
11 |
sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']] |
12 |
|
13 |
local_env.Append(LIBS=[ python_lib, boost_lib, 'finley', 'escript', 'paso', 'esysUtils', 'CppUnitTest', scsl_libs, mkl_libs, umf_libs, sys_libs]) |
14 |
|
15 |
program = local_env.Program(program_name, sources) |
16 |
|
17 |
Depends(program, dep_lib) |
18 |
|
19 |
#Add Unit Test to target alias |
20 |
|
21 |
env.Alias('build_tests', program) |
22 |
|
23 |
# run the tests - but only if test_targets are stale |
24 |
local_env.RunUnitTest(program_name) |
25 |
test_targets = os.path.splitext(program_name)[0]+'.passed' |
26 |
Alias("run_tests", test_targets) |
27 |
|
28 |
local_env.SConscript(dirs = ['#/finley/test/python'], build_dir='python', duplicate=0) |