From: Richard Levitte Date: Sat, 19 Sep 2015 22:34:16 +0000 (+0200) Subject: Correct whirlpool test X-Git-Tag: OpenSSL_1_1_0-pre1~584 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f990b0ee3abbb94bdb929d38435cce5332f5601;p=oweals%2Fopenssl.git Correct whirlpool test It depended on 'openssl no-wp', which always exited with code 0, so this test would never be performed, and this, I never discovered that the program it's supposed to run was misspellt. Furthermore, the feature to check is 'whirlpool', not 'wp'. All corrected. Reviewed-by: Stephen Henson --- diff --git a/test/recipes/05-test_wp.t b/test/recipes/05-test_wp.t index c05be9c5e9..e745f230f2 100644 --- a/test/recipes/05-test_wp.t +++ b/test/recipes/05-test_wp.t @@ -2,4 +2,4 @@ use OpenSSL::Test::Simple; -simple_test("test_wp", "wptest", "wp"); +simple_test("test_wp", "wp_test", "whirlpool");