libutils_la_SOURCES = utils.h utils.c seccomp.c utils-adv.c
libutils_la_LIBADD = ../lib/libgnutls.la
-indirect_tests = tls13/prf-early system-override-hash system-override-sig
+indirect_tests = system-override-hash system-override-sig
ctests = tls13/supported_versions tls13/tls12-no-tls13-exts \
tls13/post-handshake-with-cert tls13/post-handshake-without-cert \
- tls13/cookie tls13/key_share tls13/prf tls13/post-handshake-with-cert-ticket \
+ tls13/cookie tls13/key_share tls13/prf tls13/prf-early \
+ tls13/post-handshake-with-cert-ticket \
tls12-rollback-detection tls11-rollback-detection \
tls12-check-rollback-val tls11-check-rollback-val \
tls13/post-handshake-with-psk tls13/post-handshake-with-cert-auto \
endif
endif
-dist_check_SCRIPTS = rfc2253-escape-test.sh rsa-md5-collision/rsa-md5-collision.sh systemkey.sh tls13/prf-early.sh
+dist_check_SCRIPTS = rfc2253-escape-test.sh rsa-md5-collision/rsa-md5-collision.sh systemkey.sh
if !WINDOWS
global_init();
- virt_time_init();
+ /* date --date='TZ="UTC" 2019-04-12' +%s */
+ virt_time_init_at(1555027200);
if (debug) {
gnutls_global_set_log_function(client_log_func);
*/
global_init();
- virt_time_init();
+ /* date --date='TZ="UTC" 2019-04-12' +%s */
+ virt_time_init_at(1555027200);
if (debug) {
gnutls_global_set_log_function(server_log_func);
+++ /dev/null
-#!/bin/sh
-
-# Copyright (C) 2019 Daiki Ueno
-#
-# This file is part of GnuTLS.
-#
-# GnuTLS is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by the
-# Free Software Foundation; either version 3 of the License, or (at
-# your option) any later version.
-#
-# GnuTLS is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public License
-# along with this program. If not, see <https://www.gnu.org/licenses/>
-#
-
-: ${srcdir=.}
-: ${builddir=.}
-
-. "${srcdir}/scripts/common.sh"
-
-skip_if_no_datefudge
-
-datefudge -s 2019-04-12 "${builddir}/tls13/prf-early" "$@"
-exit $?