Files
pico-hsm/tests/scripts/pkcs11.sh
Pol Henarejos 37421d9aad Added pkcs11 keygen test script.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
2023-09-26 20:09:43 +02:00

10 lines
257 B
Bash

#!/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)