From ef3b5215dda836727b37bd637717b1dc2bcfc982 Mon Sep 17 00:00:00 2001 From: Pascal Nasahl Date: Mon, 16 Oct 2023 14:55:00 +0200 Subject: [PATCH] [ci] Test dolos Signed-off-by: Pascal Nasahl --- ci/azure-pipelines.yml | 1 - ci/ci_check_tvla_aes.sh | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/azure-pipelines.yml b/ci/azure-pipelines.yml index ade46f481..c7404e01d 100644 --- a/ci/azure-pipelines.yml +++ b/ci/azure-pipelines.yml @@ -46,7 +46,6 @@ jobs: set -e pushd ci ./ci_check_tvla_aes.sh - ../cw/tvla.py --cfg-file cfg/ci_tvla_cfg_aes_specific_byte0_rnd0.yaml run-tvla popd displayName: "Check AES TVLA" - publish: ./ci/tmp/figures diff --git a/ci/ci_check_tvla_aes.sh b/ci/ci_check_tvla_aes.sh index d56f57540..529ed2785 100755 --- a/ci/ci_check_tvla_aes.sh +++ b/ci/ci_check_tvla_aes.sh @@ -5,6 +5,7 @@ # SPDX-License-Identifier: Apache-2.0 # Simple script to test AES capture. +set -e mkdir -p tmp # AES @@ -19,5 +20,6 @@ for test in ${!aes_test_list[@]}; do NUM_TRACES=${aes_test_list[${test}]} ../cw/capture.py --cfg-file cfg/ci_capture_aes_cw310.yaml capture ${test} \ --num-traces ${NUM_TRACES} ${ARGS} + ../cw/tvla.py --cfg-file cfg/ci_tvla_cfg_aes_specific_byte0_rnd0.yaml run-tvla ARGS="" done