blob: ccb3a5a1e0185a7bc1d7a49d0988a6eb72e120c8 [file] [log] [blame]
Rich Salz596d6b72016-04-22 07:21:51 -04001#! /usr/bin/env perl
2# Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3#
4# Licensed under the OpenSSL license (the "License"). You may not use
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
Richard Levitte2a74b622015-08-08 11:33:10 +02009
Matt Caswell6bc6ca62017-03-16 12:11:23 +000010use OpenSSL::Test qw/:DEFAULT srctop_file/;
Richard Levittec02bcb62016-02-04 00:24:16 +010011use OpenSSL::Test::Utils;
Richard Levitte2a74b622015-08-08 11:33:10 +020012
Richard Levittec02bcb62016-02-04 00:24:16 +010013setup("test_clienthello");
14
15plan skip_all => "No TLS/SSL protocols are supported by this OpenSSL build"
16 if alldisabled(grep { $_ ne "ssl3" } available_protocols("tls"));
17
18plan tests => 1;
19
Matt Caswell6bc6ca62017-03-16 12:11:23 +000020ok(run(test(["clienthellotest", srctop_file("test", "session.pem")])),
21 "running clienthellotest");