From 359afe0a91e5e3067016b7b2cfe27511b34fa825 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Tue, 22 Apr 2025 11:58:46 +0200 Subject: [PATCH] Test parallel access Signed-off-by: daxpedda --- cryptoki/tests/parallel.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cryptoki/tests/parallel.rs diff --git a/cryptoki/tests/parallel.rs b/cryptoki/tests/parallel.rs new file mode 100644 index 00000000..41895fc9 --- /dev/null +++ b/cryptoki/tests/parallel.rs @@ -0,0 +1,13 @@ +// Copyright 2021 Contributors to the Parsec project. +// SPDX-License-Identifier: Apache-2.0 +mod common; + +#[test] +fn test1() { + common::init_pins(); +} + +#[test] +fn test2() { + common::init_pins(); +}