/[escript]/trunk/modellib/test/python/SConscript
ViewVC logotype

Annotation of /trunk/modellib/test/python/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 706 - (hide annotations)
Sat Apr 8 16:13:02 2006 UTC (16 years, 11 months ago) by gross
File size: 1963 byte(s)
python tests compile and run but there is still a problem with dependencies'

1 gross 703 Import('*')
2     local_env=env.Copy()
3     src_dir = local_env.Dir('.').srcnode().abspath
4     import os
5     filenames = os.listdir(src_dir)
6     #
7     # files defining tests but are not running by itself:
8     #
9     testfiles = [x for x in filenames if x.startswith('test_') and os.path.splitext(x)[1] in ['.py'] ]
10     #
11     # directories defining test data
12     #
13     testdata_dir = [x for x in filenames if x.startswith('data_') ]
14     #
15     # files defining test runs (passing in a release)
16     #
17     testruns = [x for x in filenames if x.startswith('run_') and os.path.splitext(x)[1] in ['.py'] ]
18     #
19     # files defining tests run locally (not as part of a release)
20     #
21     localtestruns = [x for x in filenames if not x.startswith('run_') and os.path.splitext(x)[1] in ['.py']]
22     #
23     # all test
24     #
25     alltestruns = testruns + localtestruns
26     #
27     # test files are just compiled:
28     #
29 gross 706 test_pyc = env.PyCompile(testfiles)
30     env.Alias('build_py_tests',test_pyc)
31 gross 703 #
32     # run all tests:
33     #
34     program = local_env.RunPyUnitTest(alltestruns)
35    
36     Depends(program, pyinstall)
37     Depends(program, dep_lib)
38 gross 706 Depends(program, 'build_py_tests')
39 gross 703
40     #Add Unit Test to target alias
41 gross 705 local_env.PrependENVPath('PYTHONPATH',str(env.Dir('#/build/$PLATFORM/escript/test/python')))
42 gross 706 local_env.PrependENVPath('PYTHONPATH',str(env.Dir('#/build/$PLATFORM/modellib/test/python')))
43 gross 705 local_env.PrependENVPath('MODELLIB_TEST_DATA_ROOT',str(env.Dir('#/modellib/test/python')))
44 gross 706 local_env.PrependENVPath('MODELLIB_WORKDIR',str(env.Dir('#/build/$PLATFORM/modellib/test/python')))
45 gross 703 env.Alias('local_py_tests',[os.path.splitext(x)[0]+'.passed' for x in alltestruns])
46     env.Alias('py_tests', [os.path.splitext(x)[0]+'.passed' for x in testruns ])
47    
48     # get all the python files in the release tar file
49     release_pyfiles = [ env.File("SConscript"), ]
50     release_testfiles = [ env.File(x) for x in testfiles + testruns ] + [ env.Dir(x) for x in testdata_dir ]
51     env.Zip(src_zipfile, release_pyfiles)
52     env.Tar(src_tarfile, release_pyfiles)
53     env.Zip(test_zipfile, release_testfiles)
54     env.Tar(test_tarfile, release_testfiles)
55    

  ViewVC Help
Powered by ViewVC 1.1.26