96bf8be098
Update pq_test to ignore changes in whitespace. Update for new testssl params, specify absolute paths to test binaries. Fork-based tests do not make sense on Windows. Disable building biotest, since it is too specific to OpenBSD's behavior to be useful on other platforms.
20 lines
338 B
Bash
Executable File
20 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
ssltest_bin=./ssltest
|
|
if [ -e ./ssltest.exe ]; then
|
|
ssltest_bin=./ssltest.exe
|
|
fi
|
|
|
|
openssl_bin=../apps/openssl
|
|
if [ -e ../apps/openssl.exe ]; then
|
|
openssl_bin=../apps/openssl.exe
|
|
fi
|
|
|
|
if [ -z $srcdir ]; then
|
|
srcdir=.
|
|
fi
|
|
|
|
$srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem \
|
|
$ssltest_bin $openssl_bin
|