summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-06-07 16:35:38 +0100
committerMatt Caswell <matt@openssl.org>2016-06-07 17:05:52 +0100
commit8f09ba471c256020f8147c421e32b4d5fc162960 (patch)
treeab4da5f38867cd2e183436f5220695ec526b2e59 /test/recipes
parent243583408c033c9f41e8a1b6f07b6b37d4da030c (diff)
Add an SSL get/set test
We just do the getters/setter for tlsext_status_type. This could be extended for others in the future. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/90-test_getset.t20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/recipes/90-test_getset.t b/test/recipes/90-test_getset.t
new file mode 100644
index 0000000000..3e245c12ab
--- /dev/null
+++ b/test/recipes/90-test_getset.t
@@ -0,0 +1,20 @@
+#! /usr/bin/env perl
+# Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the OpenSSL license (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
+
+use OpenSSL::Test;
+use OpenSSL::Test::Utils;
+
+setup("test_getset");
+
+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(["getsettest"])), "running getsettest");