TEST: Add a simple module loader, and test the FIPS module with it
authorRichard Levitte <levitte@openssl.org>
Wed, 25 Nov 2020 06:57:45 +0000 (07:57 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 1 Dec 2020 10:06:03 +0000 (11:06 +0100)
commit527eb8d2949be19b1bc7b2fa84d0105091bb0928
tree0bc1c77c34bc3158fceedcfacb83bf21e822d6c9
parent9800b1a0da90159a6bd6f5dbf8df6249ee967946
TEST: Add a simple module loader, and test the FIPS module with it

This very simple module loader is only linked with the standard C
library, so cannot and should not provide any other symbol to the
module it tries to load.  It can thereby be used to verify that the
module it tries to load doesn't have any surprising dependencies when
it's supposed to be self contained.

A test recipe is added to verify the FIPS module with this loader.

Fixes #11020

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/13507)
test/build.info
test/moduleloadtest.c [new file with mode: 0644]
test/recipes/90-test_fipsload.t [new file with mode: 0644]