update for new options and clarify
authortedu <tedu@openbsd.org>
Mon, 13 Jan 2014 22:29:32 +0000 (22:29 +0000)
committertedu <tedu@openbsd.org>
Mon, 13 Jan 2014 22:29:32 +0000 (22:29 +0000)
regress/usr.bin/signify/Makefile
regress/usr.bin/signify/signify.sh

index 9796bba..4a8fb10 100644 (file)
@@ -1,6 +1,6 @@
-#      $OpenBSD: Makefile,v 1.2 2014/01/10 22:52:50 tobiasu Exp $
+#      $OpenBSD: Makefile,v 1.3 2014/01/13 22:29:32 tedu Exp $
 
-CLEANFILES += test.sig
+CLEANFILES += test.sig confirmorders confirmorders.sig
 REGRESS_TARGETS = t1
 
 t1:
index ee9ccca..d1ef349 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $OpenBSD: signify.sh,v 1.3 2014/01/09 18:59:56 tedu Exp $
+# $OpenBSD: signify.sh,v 1.4 2014/01/13 22:29:32 tedu Exp $
 
 srcdir=$1
 
@@ -11,12 +11,15 @@ forgery="$srcdir/forgery.txt"
 
 set -e
 
-signify -s $seckey -o test.sig -S $orders 
-diff -u test.sig "$orders.sig"
-rm test.sig
+signify -S -s $seckey -x test.sig -m $orders 
+diff -u "$orders.sig" test.sig
 
-signify -p $pubkey -V $orders > /dev/null
+signify -V -p $pubkey -m $orders
 
-signify -p $pubkey -V $forgery 2> /dev/null && exit 1
+signify -V -p $pubkey -m $forgery 2> /dev/null && exit 1
+
+signify -S -s $seckey -x confirmorders.sig -e -m $orders 
+signify -V -p $pubkey -e -m confirmorders
+diff -u $orders confirmorders
 
 true