Changeset 42bee37 in mod_gnutls


Ignore:
Timestamp:
Mar 11, 2016, 7:21:56 PM (7 years ago)
Author:
Thomas Klute <thomas2.klute@…>
Branches:
asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
Children:
a03f94e
Parents:
28fc74b
git-author:
Thomas Klute <thomas2.klute@…> (03/11/16 19:12:11)
git-committer:
Thomas Klute <thomas2.klute@…> (03/11/16 19:21:56)
Message:

Test suite: OCSP index generation tool

gen_ocsp_index creates an index file in the format used by OpenSSL
from a list of certificates, e.g.:

./gen_ocsp_index server/x509.pem client/x509.pem

The purpose is to configure an OCSP responder for the test
environment.

Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r28fc74b r42bee37  
    8080AM_CONDITIONAL([DISABLE_FLOCK],
    8181               [test "$enable_flock" = "no" || test "$flock_works" = "no"])
     82
     83# TODO: check for openssl ocsp
     84AM_CONDITIONAL([ENABLE_OCSP_TEST], [true])
    8285
    8386dnl Enable test namespaces? Default is "yes".
  • test/.gitignore

    r28fc74b r42bee37  
    2121*.trs
    2222*.lock
     23gen_ocsp_index
     24.deps
  • test/Makefile.am

    r28fc74b r42bee37  
    3333TESTS = $(dist_check_SCRIPTS)
    3434
     35# build OCSP database tool
     36if ENABLE_OCSP_TEST
     37check_PROGRAMS = gen_ocsp_index
     38gen_ocsp_index_SOURCES = gen_ocsp_index.c cert_helper.c
     39noinst_HEADERS = cert_helper.h
     40endif
     41
    3542# Identities in the miniature CA, server, and client environment for
    3643# the test suite
Note: See TracChangeset for help on using the changeset viewer.