File tree Expand file tree Collapse file tree
test/scenarios-bootc/upstream Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,9 +18,16 @@ scenario_remove_vms() {
1818}
1919
2020scenario_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}
Original file line number Diff line number Diff line change @@ -17,10 +17,18 @@ scenario_remove_vms() {
1717 remove_vm host1
1818}
1919
20+
2021scenario_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}
You can’t perform that action at this time.
0 commit comments