Skip to content

Commit 3e2f08c

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

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,16 @@ 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
27+
# shellcheck disable=SC2086
2128
run_tests host1 \
2229
--variable "PROMETHEUS_HOST:$(hostname)" \
2330
--variable "LOKI_HOST:$(hostname)" \
24-
--skip sriov \
31+
${skip_args} \
2532
suites/optional/
2633
}

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,18 @@ scenario_remove_vms() {
1717
remove_vm host1
1818
}
1919

20+
2021
scenario_run_tests() {
22+
local skip_args=""
23+
24+
skip_args="--skip sriov"
25+
if [[ "${UNAME_M}" =~ aarch64 ]]; then
26+
skip_args+=" --skip tls-scanner"
27+
fi
28+
# shellcheck disable=SC2086
2129
run_tests host1 \
2230
--variable "PROMETHEUS_HOST:$(hostname)" \
2331
--variable "LOKI_HOST:$(hostname)" \
24-
--skip sriov \
32+
${skip_args} \
2533
suites/optional/
2634
}

0 commit comments

Comments
 (0)