summaryrefslogtreecommitdiffstats
path: root/test/shlibloadtest.c
AgeCommit message (Collapse)Author
2016-11-10Fix no-dso (shlibloadtest)Richard Levitte
Reviewed-by: Matt Caswell <matt@openssl.org>
2016-11-04Don't assume to know the shared library extensionRichard Levitte
test/shlibloadtest.c assumes all Unix style platforms use .so as shared library extension. This is not the case for Mac OS X, which uses .dylib. Instead of this, have the test recipe find out the extension from configuration data. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1844)
2016-11-03test/shlibloadtest: small fixesRichard Levitte
- Make sure to initialise SHLIB variables - Make sure to make local variables static Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1838)
2016-11-02Add a test to dynamically load and unload the librariesMatt Caswell
This should demonstrate that the atexit() handling is working properly (or at least not crashing) on process exit. Reviewed-by: Tim Hudson <tjh@openssl.org>