summaryrefslogtreecommitdiffstats
path: root/test/Libs
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 /test/Libs
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 'test/Libs')
-rw-r--r--test/Libs/SharedLibraryIxes.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Libs/SharedLibraryIxes.py b/test/Libs/SharedLibraryIxes.py
index c60165a..4e8dbdb 100644
--- a/test/Libs/SharedLibraryIxes.py
+++ b/test/Libs/SharedLibraryIxes.py
@@ -217,6 +217,8 @@ goo(void)
test.write('foo.c', r"""
#include <stdio.h>
+void goo(void);
+
#ifdef _WIN32
#define EXPORT __declspec( dllexport )
#else
@@ -235,6 +237,7 @@ test.write('prog.c', r"""
#include <stdio.h>
void foo(void);
+
int
main(int argc, char *argv[])
{