diff options
author | Steven Knight <knight@baldmt.com> | 2010-06-08 06:36:47 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-06-08 06:36:47 (GMT) |
commit | 02b944eec24378f2382bc7e4ff7b94805934531a (patch) | |
tree | b3de36cbc0f0b538c6ab72d54f5a9218c64e263b /test/AS | |
parent | decf967b2105f9d91d1ba285ba28761b2cffbb25 (diff) | |
download | SCons-02b944eec24378f2382bc7e4ff7b94805934531a.zip SCons-02b944eec24378f2382bc7e4ff7b94805934531a.tar.gz SCons-02b944eec24378f2382bc7e4ff7b94805934531a.tar.bz2 |
Test fixes for Solaris, notably making test/Actions/function.py print
intermediate messages to avoid buildbot hangs.
Diffstat (limited to 'test/AS')
-rw-r--r-- | test/AS/ASCOM.py | 1 | ||||
-rw-r--r-- | test/AS/ASPPCOM.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/AS/ASCOM.py b/test/AS/ASCOM.py index a874f32..568bd00 100644 --- a/test/AS/ASCOM.py +++ b/test/AS/ASCOM.py @@ -57,6 +57,7 @@ else: test.write('SConstruct', """ env = Environment(ASCOM = r'%(_python_)s myas.py $TARGET $SOURCE', OBJSUFFIX = '.obj', + SHOBJPREFIX = '', SHOBJSUFFIX = '.shobj') env.Object(target = 'test1', source = 'test1.s') env.Object(target = 'test2', source = 'test2%(alt_s_suffix)s') diff --git a/test/AS/ASPPCOM.py b/test/AS/ASPPCOM.py index 73b3ec3..f89306e 100644 --- a/test/AS/ASPPCOM.py +++ b/test/AS/ASPPCOM.py @@ -48,6 +48,7 @@ sys.exit(0) test.write('SConstruct', """ env = Environment(ASPPCOM = r'%(_python_)s myas.py $TARGET $SOURCE', OBJSUFFIX = '.obj', + SHOBJPREFIX = '', SHOBJSUFFIX = '.shobj') env.Object(target = 'test1', source = 'test1.spp') env.Object(target = 'test2', source = 'test2.SPP') |