summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Libs/SharedLibrary.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/Libs/SharedLibrary.py b/test/Libs/SharedLibrary.py
index f67d707..cda9065 100644
--- a/test/Libs/SharedLibrary.py
+++ b/test/Libs/SharedLibrary.py
@@ -57,13 +57,6 @@ obj = env.SharedObject('bar', 'foo.c')
Default(env.Library(target='foo', source=obj))
""")
-test.write('SConstructBaz', """
-env = Environment()
-env['SHLIBVERSION'] = '1.0.0'
-obj = env.SharedObject('baz', 'foo.c')
-Default(env.SharedLibrary(target='baz', source=obj))
-""")
-
test.write('foo.c', r"""
#include <stdio.h>
@@ -288,12 +281,6 @@ main(int argc, char *argv[])
test.run(program = test.workpath('progbar'),
stdout = "f4.c\nprogbar.c\n")
-if sys.platform.startswith('openbsd'):
- # Make sure we don't link libraries with -Wl,-soname on OpenBSD.
- test.run(arguments = '-f SConstructBaz')
- for line in test.stdout().split('\n'):
- test.fail_test(line.find('-Wl,-soname=libbaz.so') != -1)
-
test.pass_test()
# Local Variables: