mirror of
https://github.com/polhenarejos/pico-hsm
synced 2026-05-27 08:35:07 +02:00
10 lines
257 B
Bash
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)
|