Commit c02bcb66 authored by Richard Levitte's avatar Richard Levitte
Browse files

Have 70-test_clienthello.t be selective on when it can be run



The test program clienthello checks TLS extensions, so there's no
point running it when no TLS protocol is available.

Reviewed-by: default avatarBen Laurie <ben@openssl.org>
parent 1fff160b
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
#! /usr/bin/perl

use OpenSSL::Test::Simple;
use OpenSSL::Test;
use OpenSSL::Test::Utils;

simple_test("test_clienthello", "clienthellotest");
setup("test_clienthello");

plan skip_all => "No TLS/SSL protocols are supported by this OpenSSL build"
    if alldisabled(grep { $_ ne "ssl3" } available_protocols("tls"));

plan tests => 1;

ok(run(test(["clienthellotest"])), "running clienthellotest");