Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion test/scenarios-bootc/upstream/cos10-src@optional.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ scenario_remove_vms() {
}

scenario_run_tests() {
local skip_args=""

skip_args="--skip sriov"
if [[ "${UNAME_M}" =~ aarch64 ]]; then
skip_args+=" --skip tls-scanner"
fi
# shellcheck disable=SC2086
run_tests host1 \
--variable "PROMETHEUS_HOST:$(hostname)" \
--variable "LOKI_HOST:$(hostname)" \
--skip sriov \
${skip_args} \
suites/optional/
}
10 changes: 9 additions & 1 deletion test/scenarios-bootc/upstream/cos9-src@optional.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,18 @@ scenario_remove_vms() {
remove_vm host1
}


scenario_run_tests() {
local skip_args=""

skip_args="--skip sriov"
if [[ "${UNAME_M}" =~ aarch64 ]]; then
skip_args+=" --skip tls-scanner"
fi
# shellcheck disable=SC2086
run_tests host1 \
--variable "PROMETHEUS_HOST:$(hostname)" \
--variable "LOKI_HOST:$(hostname)" \
--skip sriov \
${skip_args} \
suites/optional/
}