mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-01-17 01:18:06 +00:00
9 lines
184 B
Bash
Executable file
9 lines
184 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
source tests/docker_env.sh
|
|
|
|
if [[ $1 == "pkcs11" ]]; then
|
|
run_in_docker ./tests/start-up-and-test-pkcs11.sh
|
|
else
|
|
run_in_docker ./tests/start-up-and-test.sh
|
|
fi
|