summaryrefslogtreecommitdiffstats
path: root/QMTest/TestCommon.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-06-08 17:42:45 (GMT)
committerSteven Knight <knight@baldmt.com>2010-06-08 17:42:45 (GMT)
commit9dae31a826c6b6f4d85e00447d25cc4b07970305 (patch)
tree92768ae428e3972824a7508bd66a96127ce29551 /QMTest/TestCommon.py
parentcfa399517220689e5992bf5634ed2dcf366473e2 (diff)
downloadSCons-9dae31a826c6b6f4d85e00447d25cc4b07970305.zip
SCons-9dae31a826c6b6f4d85e00447d25cc4b07970305.tar.gz
SCons-9dae31a826c6b6f4d85e00447d25cc4b07970305.tar.bz2
More Solaris test fixes:
* Different messages and exit codes for errors. * Fix Solaris shared suffixes. * Add a function declaration to some in-line C code to avoid a warning from Sun's compiler. * Make test/Parallel/multiple-parents.py chatty to avoid hangs, and reduce how many times it calls SCons just to make it go a little quicker.
Diffstat (limited to 'QMTest/TestCommon.py')
-rw-r--r--QMTest/TestCommon.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/QMTest/TestCommon.py b/QMTest/TestCommon.py
index 3e41d51..dac9556 100644
--- a/QMTest/TestCommon.py
+++ b/QMTest/TestCommon.py
@@ -185,12 +185,12 @@ elif sys.platform.find('darwin') != -1:
elif sys.platform.find('sunos') != -1:
exe_suffix = ''
obj_suffix = '.o'
- shobj_suffix = '.os'
+ shobj_suffix = '.o'
shobj_prefix = 'so_'
lib_prefix = 'lib'
lib_suffix = '.a'
dll_prefix = 'lib'
- dll_suffix = '.dylib'
+ dll_suffix = '.so'
else:
exe_suffix = ''
obj_suffix = '.o'