This is my first time compiling openssl. I have searched through the mailing list and previous issues as best I can and haven't found anything.
Openssl is compiling correctly, however it is failing at the ocsp test and I don't know enough about how C tests work to debug it. Any help would be greatly appreciated.
Test Summary Report
-------------------
80-test_ocsp.t (Wstat: 512 Tests: 11 Failed: 2)
Failed tests: 8, 10
Non-zero exit status: 2
Files=186, Tests=1752, 129 wallclock secs ( 4.31 usr 0.45 sys + 119.98 cusr 19.45 csys = 144.19 CPU)
Result: FAIL
make[1]: *** [Makefile:2821: _tests] Error 1
make[1]: Leaving directory '/home/jonathan/Downloads/openssl/openssl-git/src/openssl'
make: *** [Makefile:2818: tests] Error 2
I am running the following build function on Arch Linux.
build() {
cd "$srcdir/$_pkgname"
if [ "${CARCH}" == 'x86_64' ]; then
openssltarget='linux-x86_64'
optflags='enable-ec_nistp_64_gcc_128'
elif [ "${CARCH}" == 'i686' ]; then
openssltarget='linux-elf'
optflags=''
fi
# mark stack as non-executable: http://bugs.archlinux.org/task/12434
./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
shared zlib-dynamic threads enable-weak-ssl-ciphers enable-md2 enable-rc5 enable-tls enable-tls1_3 enable-tls1_2 enable-tls1_1 ${optflags} \
"${openssltarget}" "-Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}"
make depend
make
}
I am compiling from source because I need the enable-weak-ssl-ciphers option
Thanks again ni advance for any help
This is my first time compiling openssl. I have searched through the mailing list and previous issues as best I can and haven't found anything.
Openssl is compiling correctly, however it is failing at the ocsp test and I don't know enough about how C tests work to debug it. Any help would be greatly appreciated.
I am running the following build function on Arch Linux.
I am compiling from source because I need the enable-weak-ssl-ciphers option
Thanks again ni advance for any help