aboutsummaryrefslogtreecommitdiff
path: root/test/ssl-tests
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-06-26 13:47:03 +0100
committerPauli <pauli@openssl.org>2023-07-05 09:03:04 +1000
commitd6e7ebba3370e06ea4dfae6381dfe0e1c21070e3 (patch)
treedfe11d5e37d4bffe5c2f0de725c34cd884cc5c3a /test/ssl-tests
parent5f69db396c61165b25c38a7506d608200561f228 (diff)
downloadopenssl-d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3.zip
openssl-d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3.tar.gz
openssl-d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3.tar.bz2
Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20061)
Diffstat (limited to 'test/ssl-tests')
-rw-r--r--test/ssl-tests/31-quic.cnf29
-rw-r--r--test/ssl-tests/31-quic.cnf.in28
2 files changed, 0 insertions, 57 deletions
diff --git a/test/ssl-tests/31-quic.cnf b/test/ssl-tests/31-quic.cnf
deleted file mode 100644
index 0b1766e..0000000
--- a/test/ssl-tests/31-quic.cnf
+++ /dev/null
@@ -1,29 +0,0 @@
-# Generated with generate_ssl_tests.pl
-
-num_tests = 1
-
-test-0 = 0-certstatus-good
-# ===========================================================
-
-[0-certstatus-good]
-ssl_conf = 0-certstatus-good-ssl
-
-[0-certstatus-good-ssl]
-server = 0-certstatus-good-server
-client = 0-certstatus-good-client
-
-[0-certstatus-good-server]
-Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
-CipherString = DEFAULT
-PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
-
-[0-certstatus-good-client]
-CipherString = DEFAULT
-VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
-VerifyMode = Peer
-
-[test-0]
-ExpectedResult = Success
-Method = QUIC
-
-
diff --git a/test/ssl-tests/31-quic.cnf.in b/test/ssl-tests/31-quic.cnf.in
deleted file mode 100644
index 9274d18..0000000
--- a/test/ssl-tests/31-quic.cnf.in
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- mode: perl; -*-
-# Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
-#
-# Licensed under the Apache License 2.0 (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
-
-
-## Basic test of the QUIC protocol
-
-use strict;
-use warnings;
-
-package ssltests;
-
-
-our @tests = (
- {
- name => "certstatus-good",
- server => {},
- client => {},
- test => {
- "Method" => "QUIC",
- "ExpectedResult" => "Success"
- }
- }
-);