/[escript]/trunk/finley/test/SConscript
ViewVC logotype

Annotation of /trunk/finley/test/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2231 - (hide annotations)
Fri Jan 30 05:16:05 2009 UTC (14 years, 2 months ago) by jfenwick
File size: 1199 byte(s)
Modified scons files to compile c++ unit tests with the same options used to compile the libraries.

1 ksteube 1811
2     ########################################################
3 ksteube 1705 #
4 ksteube 1811 # Copyright (c) 2003-2008 by University of Queensland
5     # Earth Systems Science Computational Center (ESSCC)
6     # http://www.uq.edu.au/esscc
7 ksteube 1705 #
8 ksteube 1811 # Primary Business: Queensland, Australia
9     # Licensed under the Open Software License version 3.0
10     # http://www.opensource.org/licenses/osl-3.0.php
11 ksteube 1705 #
12 ksteube 1811 ########################################################
13 ksteube 1705
14 ksteube 1811
15 ksteube 1705 import os
16 robwdcock 649 Import('*')
17    
18 jfenwick 2231 local_env = clone_env(env_mpi)
19 robwdcock 649
20 gross 700 # get the relevant file names:
21 robwdcock 649 src_dir = local_env.Dir('.').srcnode().abspath
22 gross 700 filenames = [ x for x in os.listdir(src_dir) if os.path.splitext(x)[1] in [".h", ".c", ".cpp"] ]
23 robwdcock 649
24     sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']]
25    
26 ksteube 1705 local_env.Append(LIBS=['finley', 'escript', 'paso', 'esysUtils', 'CppUnitTest'] + env['sys_libs'])
27 robwdcock 668
28 gross 700 # compile test
29 ksteube 1705 program = local_env.Program('finley_UnitTest', sources)
30 robwdcock 670 env.Alias('build_tests', program)
31 robwdcock 649
32     # run the tests - but only if test_targets are stale
33 ksteube 1705 local_env.RunUnitTest('finley_UnitTest')
34     test_targets = os.path.splitext('finley_UnitTest')[0]+'.passed'
35 robwdcock 649 Alias("run_tests", test_targets)
36    
37 robwdcock 661 local_env.SConscript(dirs = ['#/finley/test/python'], build_dir='python', duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26