]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
New test program.
authorNiels Möller <nisse@lysator.liu.se>
Tue, 22 Oct 2002 20:47:04 +0000 (22:47 +0200)
committerNiels Möller <nisse@lysator.liu.se>
Tue, 22 Oct 2002 20:47:04 +0000 (22:47 +0200)
Rev: src/nettle/examples/sexp-conv-test:1.1

examples/sexp-conv-test [new file with mode: 0755]

diff --git a/examples/sexp-conv-test b/examples/sexp-conv-test
new file mode 100755 (executable)
index 0000000..1cabbd2
--- /dev/null
@@ -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 <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