Added pkcs11 keygen test script.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2023-09-26 20:09:43 +02:00
parent d906df2809
commit 37421d9aad
5 changed files with 61 additions and 26 deletions

9
tests/scripts/pkcs11.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
echo -n "Test initialization..."
#./tests/scripts/initialize.sh
test $? -eq 0 && echo -e '\tok' || (echo -e '\tfail' && exit 1)
echo -n "Test keygen..."
./tests/scripts/keygen.sh
test $? -eq 0 && echo -e '\tok' || (echo -e '\tfail' && exit 1)