From: Niels Möller Date: Tue, 22 Oct 2002 20:47:04 +0000 (+0200) Subject: New test program. X-Git-Tag: nettle_1.7_release_20030311~228 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3893e56edf93ce5e8f43a501843b2c1eecb64ad;p=thirdparty%2Fnettle.git New test program. Rev: src/nettle/examples/sexp-conv-test:1.1 --- diff --git a/examples/sexp-conv-test b/examples/sexp-conv-test new file mode 100755 index 00000000..1cabbd2f --- /dev/null +++ b/examples/sexp-conv-test @@ -0,0 +1,28 @@ +#! /bin/sh + +if [ -z "$srcdir" ] ; then + srcdir=`pwd` +fi + +test_conv () { + # FIXME: echo -n not portable + echo -n "$1" > test.in + if ./sexp-conv 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