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

Contents of /trunk/esysUtils/test/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1133 - (show annotations)
Tue May 8 07:19:33 2007 UTC (15 years, 10 months ago) by gross
File size: 1051 byte(s)
Changes needed for windows. This still does not work on and has not run on linux and the altix. 
 
There are a few changes in names in the scons script, in particular _libs is used rather than _lib and _libs is always a list. By default on windows MSVC is used. The location of python is at C:\Program Files\python<version>, boost at C:\Program Files\boost and netcdf at C:\Program Files\netcdf. 

 
1 Import('*')
2
3 program_name = 'EsysExceptionTest'
4
5 local_env=env.Copy()
6
7 src_dir = local_env.Dir('.').srcnode().abspath
8
9 import os
10 # get the relevant file names:
11 src_dir = local_env.Dir('.').srcnode().abspath
12 filenames = [ x for x in os.listdir(src_dir) if os.path.splitext(x)[1] in [".h", ".c", ".cpp"] ]
13
14 sources = [x for x in filenames if os.path.splitext(x)[1] in ['.cpp', '.c']]
15
16 local_env.Append(LIBS=[ 'esysUtils', 'CppUnitTest', sys_libs])
17
18 program = local_env.Program(program_name, sources)
19
20 #Add Unit Test to target alias
21
22 env.Alias('build_tests', program)
23
24 # run the tests - but only if test_targets are stale
25 local_env.RunUnitTest(program_name)
26 test_targets = os.path.splitext(program_name)[0]+'.passed'
27 Alias("run_tests", test_targets)
28
29 release_srcfiles = [ env.File("SConscript"), ]
30 release_testfiles = [ env.File(x) for x in filenames ]
31 env.Zip(src_zipfile, release_srcfiles)
32 env.Zip(test_zipfile, release_testfiles)
33 try:
34 env.Tar(src_tarfile, release_srcfiles)
35 env.Tar(test_tarfile, release_testfiles)
36 except AttributeError:
37 pass

  ViewVC Help
Powered by ViewVC 1.1.26