71a4f2832c
For now, I'm moving them into Attic/. They will be removed later. Reviewed-by: Rich Salz <rsalz@openssl.org>
36 lines
824 B
Bash
36 lines
824 B
Bash
#!/bin/sh
|
|
|
|
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
|