mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-01-17 17:28:06 +00:00
13 lines
390 B
Bash
Executable file
13 lines
390 B
Bash
Executable file
#!/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)
|
|
|
|
echo -n "Test sign and verify..."
|
|
./tests/scripts/sign_and_verify.sh
|
|
test $? -eq 0 && echo -e '\tok' || (echo -e '\tfail' && exit 1)
|