15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
import sys, os, re, socket |
import sys, os, re, socket, platform |
19 |
|
|
20 |
# Add our extensions |
# Add our extensions |
21 |
if os.path.isdir('scons'): sys.path.append('scons') |
if os.path.isdir('scons'): sys.path.append('scons') |
72 |
('ld_extra', 'Extra linker flags', ''), |
('ld_extra', 'Extra linker flags', ''), |
73 |
('sys_libs', 'System libraries to link with', []), |
('sys_libs', 'System libraries to link with', []), |
74 |
('ar_flags', 'Static library archiver flags to use', ''), |
('ar_flags', 'Static library archiver flags to use', ''), |
75 |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'yes'), |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'no'), |
76 |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
77 |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
78 |
|
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
79 |
# Python |
# Python |
80 |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
81 |
('python_lib_path', 'Path to Python libs', usr_lib), |
('python_lib_path', 'Path to Python libs', usr_lib), |
120 |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
('umf_path', 'Path to UMFPACK includes', '/usr/include/suitesparse'), |
121 |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
('umf_lib_path', 'Path to UMFPACK libs', usr_lib), |
122 |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
('umf_libs', 'UMFPACK libraries to link with', ['umfpack']), |
123 |
|
# Silo |
124 |
|
BoolOption('usesilo', 'switch on/off the usage of Silo', 'yes'), |
125 |
|
('silo_path', 'Path to Silo includes', '/usr/include'), |
126 |
|
('silo_lib_path', 'Path to Silo libs', usr_lib), |
127 |
|
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
128 |
# AMD (used by UMFPACK) |
# AMD (used by UMFPACK) |
129 |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
('amd_path', 'Path to AMD includes', '/usr/include/suitesparse'), |
130 |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
('amd_lib_path', 'Path to AMD libs', usr_lib), |
170 |
# Default compiler options (override allowed in hostname_options.py, but should not be necessary) |
# Default compiler options (override allowed in hostname_options.py, but should not be necessary) |
171 |
# For both C and C++ you get: cc_flags and either the optim flags or debug flags |
# For both C and C++ you get: cc_flags and either the optim flags or debug flags |
172 |
|
|
173 |
|
sysheaderopt = "" # how do we indicate that a header is a system header. Use "" for no action. |
174 |
|
|
175 |
if env["CC"] == "icc": |
if env["CC"] == "icc": |
176 |
# Intel compilers |
# Intel compilers |
177 |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
cc_flags = "-fPIC -ansi -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
182 |
omp_libs = ['guide', 'pthread'] |
omp_libs = ['guide', 'pthread'] |
183 |
pedantic = "" |
pedantic = "" |
184 |
fatalwarning = "" # Switch to turn warnings into errors |
fatalwarning = "" # Switch to turn warnings into errors |
185 |
|
sysheaderopt = "" |
186 |
elif env["CC"] == "gcc": |
elif env["CC"] == "gcc": |
187 |
# GNU C on any system |
# GNU C on any system |
188 |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -isystem " + env['boost_path'] + " -isystem " + env['python_path'] + " -Wno-sign-compare -Wno-system-headers -Wno-strict-aliasing" |
cc_flags = "-pedantic -Wall -fPIC -ansi -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -Wno-sign-compare -Wno-system-headers -Wno-long-long -Wno-strict-aliasing" |
189 |
#the strict aliasing warning is triggered by some type punning in the boost headers for version 1.34 |
#the long long warning occurs on the Mac |
|
#isystem does not seem to prevent this |
|
190 |
cc_optim = "-O3" |
cc_optim = "-O3" |
191 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
192 |
omp_optim = "" |
omp_optim = "" |
194 |
omp_libs = [] |
omp_libs = [] |
195 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
196 |
fatalwarning = "-Werror" |
fatalwarning = "-Werror" |
197 |
|
sysheaderopt = "-isystem " |
198 |
elif env["CC"] == "cl": |
elif env["CC"] == "cl": |
199 |
# Microsoft Visual C on Windows |
# Microsoft Visual C on Windows |
200 |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
cc_flags = "/FD /EHsc /GR /wd4068 -D_USE_MATH_DEFINES -DDLL_NETCDF" |
205 |
omp_libs = [] |
omp_libs = [] |
206 |
pedantic = "" |
pedantic = "" |
207 |
fatalwarning = "" |
fatalwarning = "" |
208 |
|
sysheaderopt = "" |
209 |
elif env["CC"] == "icl": |
elif env["CC"] == "icl": |
210 |
# intel C on Windows, see windows_intelc_options.py for a start |
# intel C on Windows, see windows_intelc_options.py for a start |
211 |
pedantic = "" |
pedantic = "" |
212 |
fatalwarning = "" |
fatalwarning = "" |
213 |
|
sysheaderopt = "" |
214 |
|
|
215 |
|
|
216 |
# If not specified in hostname_options.py then set them here |
# If not specified in hostname_options.py then set them here |
217 |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
if env["cc_flags"] == "-DEFAULT_1": env['cc_flags'] = cc_flags |
221 |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
222 |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
223 |
|
|
224 |
|
#set up the autolazy values |
225 |
|
if env['forcelazy'] != "leave_alone": |
226 |
|
if env['forcelazy'] == 'on': |
227 |
|
env.Append(CPPDEFINES='FAUTOLAZYON') |
228 |
|
else: |
229 |
|
if env['forcelazy'] == 'off': |
230 |
|
env.Append(CPPDEFINES='FAUTOLAZYOFF') |
231 |
|
|
232 |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
233 |
if not env["useopenmp"]: |
if not env["useopenmp"]: |
234 |
env['omp_optim'] = "" |
env['omp_optim'] = "" |
333 |
|
|
334 |
# Test that the compiler is working |
# Test that the compiler is working |
335 |
if not conf.CheckFunc('printf'): |
if not conf.CheckFunc('printf'): |
336 |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
337 |
sys.exit(1) |
sys.exit(1) |
338 |
|
|
339 |
if conf.CheckFunc('gethostname'): |
if conf.CheckFunc('gethostname'): |
340 |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
341 |
|
|
342 |
############ python libraries (required) ####################### |
############ python libraries (required) ####################### |
343 |
|
|
344 |
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
|
345 |
|
if not sysheaderopt =="": |
346 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['python_path']) |
347 |
|
else: |
348 |
|
conf.env.AppendUnique(CPPPATH = [env['python_path']]) |
349 |
|
|
350 |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['python_lib_path']]) |
351 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
352 |
|
|
355 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
356 |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
357 |
sys.exit(1) |
sys.exit(1) |
358 |
if not conf.CheckFunc('Py_Main'): |
if not conf.CheckFunc('Py_Exit'): |
359 |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
360 |
sys.exit(1) |
sys.exit(1) |
361 |
|
|
362 |
############ boost (required) ################################## |
############ boost (required) ################################## |
363 |
|
|
364 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
if not sysheaderopt =="": |
365 |
|
# This is required because we can't -isystem /usr/system because it breaks std includes |
366 |
|
if os.path.normpath(env['boost_path']) =="/usr/include": |
367 |
|
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
368 |
|
else: |
369 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']) |
370 |
|
else: |
371 |
|
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
372 |
|
|
373 |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['boost_lib_path']]) |
374 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
375 |
|
|
378 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
379 |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
380 |
sys.exit(1) |
sys.exit(1) |
381 |
|
|
382 |
if not conf.CheckFunc('PyObject_SetAttr'): |
if not conf.CheckFunc('PyObject_SetAttr'): |
383 |
print "Cannot find boost library method PyObject_SetAttr (tried method PyObject_SetAttr in library %s in directory %s)" % (env['boost_libs'], env['boost_lib_path']) |
print "Cannot find boost library method PyObject_SetAttr (tried method PyObject_SetAttr in library %s in directory %s)" % (env['boost_libs'], env['boost_lib_path']) |
384 |
sys.exit(1) |
sys.exit(1) |
481 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
482 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
483 |
|
|
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
|
484 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
485 |
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
486 |
|
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
487 |
|
|
488 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
489 |
if env['useumfpack']: |
if env['useumfpack']: |
492 |
else: |
else: |
493 |
conf.Finish() |
conf.Finish() |
494 |
|
|
495 |
|
############ Silo (optional) ################################### |
496 |
|
|
497 |
|
if env['usesilo']: |
498 |
|
conf = Configure(clone_env(env)) |
499 |
|
conf.env.AppendUnique(CPPPATH = [env['silo_path']]) |
500 |
|
conf.env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
501 |
|
conf.env.AppendUnique(LIBS = [env['silo_libs']]) |
502 |
|
if not conf.CheckCHeader('silo.h'): env['usesilo'] = 0 |
503 |
|
if not conf.CheckFunc('DBMkDir'): env['usesilo'] = 0 |
504 |
|
conf.Finish() |
505 |
|
|
506 |
|
# Add the path to Silo to environment env if it was found. |
507 |
|
# Note that we do not add the libs since they are only needed for the |
508 |
|
# escriptreader library and tools. |
509 |
|
if env['usesilo']: |
510 |
|
env.AppendUnique(CPPPATH = [env['silo_path']]) |
511 |
|
env.AppendUnique(LIBPATH = [env['silo_lib_path']]) |
512 |
|
env.Append(CPPDEFINES = ['HAVE_SILO']) |
513 |
|
|
514 |
############ Add the compiler flags ############################ |
############ Add the compiler flags ############################ |
515 |
|
|
516 |
# Enable debug by choosing either cc_debug or cc_optim |
# Enable debug by choosing either cc_debug or cc_optim |
525 |
env.Append(CCFLAGS = env['cc_flags']) |
env.Append(CCFLAGS = env['cc_flags']) |
526 |
env.Append(LIBS = [env['omp_libs']]) |
env.Append(LIBS = [env['omp_libs']]) |
527 |
|
|
528 |
|
|
529 |
|
############ Add some custom builders ########################## |
530 |
|
|
531 |
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
532 |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
533 |
|
|
534 |
|
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
535 |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
536 |
|
|
537 |
|
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
538 |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
539 |
|
|
540 |
############ MPI (optional) #################################### |
############ MPI (optional) #################################### |
541 |
|
|
542 |
# Create a modified environment for MPI programs (identical to env if usempi=no) |
# Create a modified environment for MPI programs (identical to env if usempi=no) |
611 |
else: print " Not using MKL" |
else: print " Not using MKL" |
612 |
if env['useumfpack']: print " Using UMFPACK" |
if env['useumfpack']: print " Using UMFPACK" |
613 |
else: print " Not using UMFPACK" |
else: print " Not using UMFPACK" |
614 |
|
if env['usesilo']: print " Using Silo" |
615 |
|
else: print " Not using Silo" |
616 |
if env['useopenmp']: print " Using OpenMP" |
if env['useopenmp']: print " Using OpenMP" |
617 |
else: print " Not using OpenMP" |
else: print " Not using OpenMP" |
618 |
if env['usempi']: print " Using MPI" |
if env['usempi']: print " Using MPI" |
635 |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
636 |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
637 |
|
|
|
############ Add some custom builders ########################## |
|
|
|
|
|
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
|
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
|
638 |
|
|
639 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
############ Build the subdirectories ########################## |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
|
640 |
|
|
641 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
from grouptest import * |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
|
642 |
|
|
643 |
############ Build the subdirectories ########################## |
TestGroups=[] |
644 |
|
|
645 |
Export( |
Export( |
646 |
["env", |
["env", |
647 |
"env_mpi", |
"env_mpi", |
648 |
"clone_env", |
"clone_env", |
649 |
"IS_WINDOWS_PLATFORM" |
"IS_WINDOWS_PLATFORM", |
650 |
|
"TestGroups" |
651 |
] |
] |
652 |
) |
) |
653 |
|
|
654 |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
655 |
|
env.SConscript(dirs = ['tools/libescriptreader/src'], build_dir='build/$PLATFORM/tools/libescriptreader', duplicate=0) |
656 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
657 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
658 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
663 |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
664 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
665 |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
666 |
|
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
667 |
|
|
668 |
|
|
669 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
670 |
|
|
706 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
707 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
708 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
709 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
710 |
|
if env['usesilo']: build_all_list += ['target_escript2silo'] |
711 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
712 |
|
|
713 |
install_all_list = [] |
install_all_list = [] |
720 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
721 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
722 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
723 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
724 |
|
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
725 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
726 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
727 |
|
|
734 |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
735 |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
736 |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
737 |
|
env.Alias('build_full',['install_all','build_tests','build_py_tests']) |
738 |
|
|
739 |
############ Targets to build the documentation ################ |
############ Targets to build the documentation ################ |
740 |
|
|
741 |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
742 |
|
|
743 |
|
if not IS_WINDOWS_PLATFORM: |
744 |
|
try: |
745 |
|
utest=open("utest.sh","w") |
746 |
|
build_platform=os.name #Sometimes Mac python says it is posix |
747 |
|
if (build_platform=='posix') and platform.system()=="Darwin": |
748 |
|
build_platform='darwin' |
749 |
|
utest.write(GroupTest.makeHeader(build_platform)) |
750 |
|
for tests in TestGroups: |
751 |
|
utest.write(tests.makeString()) |
752 |
|
utest.close() |
753 |
|
print "utest.sh written" |
754 |
|
except IOError: |
755 |
|
print "Error attempting to write unittests file." |
756 |
|
sys.exit(1) |
757 |
|
|