Merge pull request #4941 from douzzer/20220309-script-cleanup

20220309 script cleanup
This commit is contained in:
David Garske
2022-03-09 13:30:50 -08:00
committed by GitHub
30 changed files with 146 additions and 148 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
###########################################################
########## update and sign server-revoked-key.pem ################

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#commit-tests.sh

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
#
# Our "pre-push" hook.

View File

@@ -213,4 +213,3 @@ run_test
echo "exiting with $exit_code certificate was not revoked"
exit $exit_code
########## end program ##########

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# external.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# google.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#openssl.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# ping.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#pkcallbacks.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# psk.test
# copyright wolfSSL 2016

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#resume.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#sniffer-testsuite.test

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# tls13.test
# Copyright wolfSSL 2016-2021
@@ -138,9 +138,9 @@ fi
do_cleanup
echo ""
cat ./wolfssl/options.h | grep -F -e 'NO_CERTS'
grep -F -e 'NO_CERTS' ./wolfssl/options.h
NO_CERTS=$?
cat ./wolfssl/options.h | grep -F -e 'WOLFSSL_NO_CLIENT_AUTH'
grep -F -e 'WOLFSSL_NO_CLIENT_AUTH' ./wolfssl/options.h
NO_CLIENT_AUTH=$?
if [ $NO_CERTS -ne 0 -a $NO_CLIENT_AUTH -ne 0 ]; then
# TLS 1.3 mutual auth required but client doesn't send certificates.
@@ -312,4 +312,3 @@ do_cleanup
echo -e "\nALL Tests Passed"
exit 0

View File

@@ -38777,7 +38777,7 @@ static void test_wolfSSL_BIO_connect(void)
}
static void test_wolfSSL_BIO_Qt_usecase()
static void test_wolfSSL_BIO_Qt_usecase(void)
{
#if !defined(NO_BIO) && defined(OPENSSL_EXTRA) && !defined(NO_WOLFSSL_CLIENT)

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
[ "$(whoami)" != "root" ] && echo "Sorry, you are not root." && exit 1