From c6394e969444a74dd78e991d61357131f6a4e728 Mon Sep 17 00:00:00 2001 From: Gowtham Suresh Kumar Date: Tue, 7 May 2024 10:35:16 +0100 Subject: [PATCH] ci: Disbale key mappings test for TS The new libts library doesnt produce keys in the form of 00*.psa_its so disable the tests in the CI for it. Signed-off-by: Gowtham Suresh Kumar --- ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.sh b/ci.sh index c3a5cc02..d7cff322 100755 --- a/ci.sh +++ b/ci.sh @@ -120,7 +120,7 @@ run_old_e2e_tests() { run_key_mappings_tests() { # There is no keys generated for CryptoAuthLib yet. # This condition should be removed when the keys are generated for the CAL provider - if ! [[ "$PROVIDER_NAME" = "cryptoauthlib" ]]; then + if ! [[ "$PROVIDER_NAME" = "cryptoauthlib" || "$PROVIDER_NAME" = "trusted-service" ]]; then echo "Execute key mappings tests" RUST_BACKTRACE=1 cargo test $TEST_FEATURES --manifest-path ./e2e_tests/Cargo.toml key_mappings fi