mirror of
https://github.com/polhenarejos/pico-hsm
synced 2026-05-29 01:11:20 +02:00
10 lines
184 B
Bash
Executable File
10 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
|