Skip to content
Snippets Groups Projects
Commit b3893e56 authored by Niels Möller's avatar Niels Möller
Browse files

New test program.

Rev: src/nettle/examples/sexp-conv-test:1.1
parent bb916d35
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
if [ -z "$srcdir" ] ; then
srcdir=`pwd`
fi
test_conv () {
# FIXME: echo -n not portable
echo -n "$1" > test.in
if ./sexp-conv <test.in >test1.out ; then
true
else
exit 1
fi
echo -n "$2" > test2.out
if cmp test1.out test2.out ; then
true
else
exit 1;
fi
}
test_conv "3:foo" "foo" -a
test_conv "4:3des" '"3des"' -a
test_conv "(3:foo [bar]foo)" "(3:foo[3:bar]3:foo)" -c
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment