aboutsummaryrefslogtreecommitdiff
path: root/regress/tests/args-tls.pl
diff options
context:
space:
mode:
authorReyk Floeter <reyk@esdenera.com>2015-07-16 21:07:51 +0200
committerReyk Floeter <reyk@esdenera.com>2015-07-16 21:07:51 +0200
commit1054672e0e4429da03a6446ffac142e5bbbd6c31 (patch)
tree188d8a729e9619f976539644661cc918d24b3dc2 /regress/tests/args-tls.pl
parentfe2313a2f80ada9df45f7ab18cc760b7ffd26cd5 (diff)
downloadhttpd-1054672e0e4429da03a6446ffac142e5bbbd6c31.tar.gz
httpd-1054672e0e4429da03a6446ffac142e5bbbd6c31.zip
Add regress tests
Diffstat (limited to 'regress/tests/args-tls.pl')
-rw-r--r--regress/tests/args-tls.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/regress/tests/args-tls.pl b/regress/tests/args-tls.pl
new file mode 100644
index 0000000..29321a2
--- /dev/null
+++ b/regress/tests/args-tls.pl
@@ -0,0 +1,18 @@
+# test https connection
+
+use strict;
+use warnings;
+
+our %args = (
+ client => {
+ tls => 1,
+ loggrep => 'Issuer.*/OU=ca/',
+ },
+ httpd => {
+ listentls => 1,
+ },
+ len => 512,
+ md5 => path_md5("512")
+);
+
+1;