diff options
author | Steven Knight <knight@baldmt.com> | 2004-03-30 15:14:35 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-03-30 15:14:35 (GMT) |
commit | 9700bc6b12a6320ead9f325a209f29c588f11b02 (patch) | |
tree | c5639ef50c3c4014b2875ba9d77c4c6301b162b9 /etc/TestSCons.py | |
parent | 9d0a5d2fb054d3dd31db8b20258d1a1243b45fb8 (diff) | |
download | SCons-9700bc6b12a6320ead9f325a209f29c588f11b02.zip SCons-9700bc6b12a6320ead9f325a209f29c588f11b02.tar.gz SCons-9700bc6b12a6320ead9f325a209f29c588f11b02.tar.bz2 |
Use python1.5 in default Aegis builds. Fix testing infrastructure for Python 1.5.
Diffstat (limited to 'etc/TestSCons.py')
-rw-r--r-- | etc/TestSCons.py | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index 33049c5..b39b581 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -22,9 +22,27 @@ import string import sys from TestCommon import * +from TestCommon import __all__ + +__all__.extend([ 'TestSCons', + 'python', + '_exe', + '_obj', + '_shobj', + 'lib_', + '_lib', + 'dll_', + '_dll' + ]) python = python_executable - +_exe = exe_suffix +_obj = obj_suffix +_shobj = shobj_suffix +_lib = lib_suffix +lib_ = lib_prefix +_dll = dll_suffix +dll_ = dll_prefix def gccFortranLibs(): """Test whether -lfrtbegin is required. This can probably be done in |