Skip to content

Commit 6891c03

Browse files
committed
skip running tls-scanner on cas10-src-optional arm
Signed-off-by: Evgeny Slutsky <eslutsky@redhat.com>
1 parent a7eaa13 commit 6891c03

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

test/scenarios-bootc/upstream/cos10-src@optional.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@ scenario_remove_vms() {
1818
}
1919

2020
scenario_run_tests() {
21+
local skip_args=""
22+
23+
skip_args="--skip sriov"
24+
if [[ "${UNAME_M}" =~ aarch64 ]]; then
25+
skip_args+=" --skip tls-scanner"
26+
fi
2127
run_tests host1 \
2228
--variable "PROMETHEUS_HOST:$(hostname)" \
2329
--variable "LOKI_HOST:$(hostname)" \
24-
--skip sriov \
30+
"${skip_args}" \
2531
suites/optional/
2632
}

0 commit comments

Comments
 (0)