mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
30f54ad295
Removed commented-out tests Standardize on doing cmd ... || exit 1 instead of cmd ... if [ $? != 0] ; then exit 1 fi where that if statement has ben one, three, or four lines, variously. Reviewed-by: Richard Levitte <levitte@openssl.org>
38 lines
869 B
Bash
38 lines
869 B
Bash
#!/bin/sh
|
|
|
|
OPENSSL_CONF=/dev/null ; export OPENSSL_CONF
|
|
cmd='../util/shlib_wrap.sh ../apps/openssl sess_id'
|
|
|
|
if [ "$1"x != "x" ]; then
|
|
t=$1
|
|
else
|
|
t=testsid.pem
|
|
fi
|
|
|
|
echo testing session-id conversions
|
|
cp $t sid-fff.p
|
|
|
|
echo "p -> d"
|
|
$cmd -in sid-fff.p -inform p -outform d >sid-f.d || exit 1
|
|
echo "p -> p"
|
|
$cmd -in sid-fff.p -inform p -outform p >sid-f.p || exit 1
|
|
|
|
echo "d -> d"
|
|
$cmd -in sid-f.d -inform d -outform d >sid-ff.d1 || exit 1
|
|
echo "p -> d"
|
|
$cmd -in sid-f.p -inform p -outform d >sid-ff.d3 || exit 1
|
|
|
|
echo "d -> p"
|
|
$cmd -in sid-f.d -inform d -outform p >sid-ff.p1 || exit 1
|
|
echo "p -> p"
|
|
$cmd -in sid-f.p -inform p -outform p >sid-ff.p3 || exit 1
|
|
|
|
cmp sid-fff.p sid-f.p || exit 1
|
|
cmp sid-fff.p sid-ff.p1 || exit 1
|
|
cmp sid-fff.p sid-ff.p3 || exit 1
|
|
cmp sid-f.p sid-ff.p1 || exit 1
|
|
cmp sid-f.p sid-ff.p3 || exit 1
|
|
|
|
/bin/rm -f sid-f.* sid-ff.* sid-fff.*
|
|
exit 0
|