From 522b11e969cbdc82eca369512275f227080a86fa Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 29 Jan 2019 11:41:32 +0000 Subject: [PATCH 1/1] Fix no-dso builds Reviewed-by: Tim Hudson Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/8111) --- test/recipes/90-test_shlibload.t | 1 + 1 file changed, 1 insertion(+) diff --git a/test/recipes/90-test_shlibload.t b/test/recipes/90-test_shlibload.t index 1f097edaf6..fee56cd254 100644 --- a/test/recipes/90-test_shlibload.t +++ b/test/recipes/90-test_shlibload.t @@ -21,6 +21,7 @@ use platform; plan skip_all => "Test only supported in a shared build" if disabled("shared"); plan skip_all => "Test is disabled on AIX" if config('target') =~ m|^aix|; +plan skip_all => "Test only supported in a dso build" if disabled("dso"); plan tests => 10; -- 2.34.1