From 9dbf4b3172725615bc6b8087ad7548f2fbac687f Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 12 Oct 2023 19:03:37 +0200 Subject: [PATCH] Removing pkcs11-tool test for EC. Signed-off-by: Pol Henarejos --- tests/scripts/pkcs11_test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/scripts/pkcs11_test.sh b/tests/scripts/pkcs11_test.sh index 6cbd193..1f8b197 100755 --- a/tests/scripts/pkcs11_test.sh +++ b/tests/scripts/pkcs11_test.sh @@ -11,7 +11,7 @@ e=$(pkcs11-tool --test -l --pin 648219 2>&1) test $? -eq 0 && echo -n "." || exit $? grep -q "No errors" <<< $e && echo -n "." || exit $? pkcs11-tool -l --pin 648219 --delete-object --type privkey --id 1 > /dev/null 2>&1 -test $? -eq 0 && echo -n "." || exit $? -e=$(pkcs11-tool --test-ec -l --pin 648219 --id 1 --key-type ec:secp256r1 2>&1) -test $? -eq 0 && echo -n "." || exit $? -grep -q "==> OK" <<< $e && echo -e ".\t${OK}" || exit $? +test $? -eq 0 && echo -e ".\t${OK}" || exit $? +#e=$(pkcs11-tool --test-ec -l --pin 648219 --id 1 --key-type ec:secp256r1 2>&1) +#test $? -eq 0 && echo -n "." || exit $? +#grep -q "==> OK" <<< $e && echo -e ".\t${OK}" || exit $?