From c30fe505c55c55823ef9cb0c8785e18058df0603 Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Mon, 25 Jul 2011 21:49:14 +0000 Subject: [PATCH] Add check of decrypted image to test. git-svn-id: https://cryptsetup.googlecode.com/svn/trunk@581 36d66b0a-2a48-0410-832c-cd162a569da5 --- tests/compat-test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/compat-test b/tests/compat-test index 04e85a39..dcf3d5a1 100755 --- a/tests/compat-test +++ b/tests/compat-test @@ -102,6 +102,8 @@ function check_exists() prepare "[1] open - compat image - acceptance check" new echo "compatkey" | $CRYPTSETUP luksOpen $LOOPDEV $DEV_NAME || fail check_exists +ORG_SHA1=$(sha1sum -b /dev/mapper/$DEV_NAME | cut -f 1 -d' ') +[ "$ORG_SHA1" = 676062b66ebf36669dab705442ea0762dfc091b0 ] || fail prepare "[2] open - compat image - denial check" new echo "wrongkey" | $CRYPTSETUP luksOpen $LOOPDEV $DEV_NAME 2>/dev/null && fail