aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-19 23:49:26 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-20 00:04:16 +0100
commit01d524fa039ebc2e59212bd1211a8c6058657fc4 (patch)
treee2f8a68dd732c377d597ec6b4e420953fbd6d27c /test
parent340166a9da47305e30eb8a0be09e4d4491233269 (diff)
downloadopenssl-01d524fa039ebc2e59212bd1211a8c6058657fc4.tar.gz
Update Simple.pm to use disabled()
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/testlib/OpenSSL/Test/Simple.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/testlib/OpenSSL/Test/Simple.pm b/test/testlib/OpenSSL/Test/Simple.pm
index 874a156f4e..96500fcaba 100644
--- a/test/testlib/OpenSSL/Test/Simple.pm
+++ b/test/testlib/OpenSSL/Test/Simple.pm
@@ -28,6 +28,7 @@ You could call them hacks if you wish.
=cut
use OpenSSL::Test;
+use OpenSSL::Test::Utils;
=over 4
@@ -58,7 +59,7 @@ sub simple_test {
plan tests => 1;
SKIP: {
skip "$algo is not supported by this OpenSSL build, skipping this test...", 1
- if $algo && run(app(["openssl", "no-$algo"]));
+ if $algo && disabled($algo);
ok(run(test([$prgr])), "running $prgr");
}