Skip to content

MetalLB: Remove "\" from SKIP var in E2E tests script #1339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
8 changes: 4 additions & 4 deletions metallb/run_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ sudo firewall-cmd --zone=libvirt --add-port=4784/udp

# need to skip L2 metrics test because the pod that's running the tests is not in the
# same subnet of the cluster nodes, so the arp request that's done in the test won't work.
SKIP="\"L2 metrics\""
SKIP="L2 metrics"
if [ "${IP_STACK}" = "v4" ]; then
SKIP="$SKIP\|IPV6\|DUALSTACK"
SKIP="$SKIP|IPV6|DUALSTACK"
export PROVISIONING_HOST_EXTERNAL_IPV4=${PROVISIONING_HOST_EXTERNAL_IP}
export PROVISIONING_HOST_EXTERNAL_IPV6=1111:1:1::1
elif [ "${IP_STACK}" = "v6" ]; then
SKIP="$SKIP\|IPV4\|DUALSTACK"
SKIP="$SKIP|IPV4|DUALSTACK"
export PROVISIONING_HOST_EXTERNAL_IPV6=${PROVISIONING_HOST_EXTERNAL_IP}
export PROVISIONING_HOST_EXTERNAL_IPV4=1.1.1.1
elif [ "${IP_STACK}" = "v4v6" ]; then
SKIP="$SKIP\|IPV6"
SKIP="$SKIP|IPV6"
export PROVISIONING_HOST_EXTERNAL_IPV4=${PROVISIONING_HOST_EXTERNAL_IP}
export PROVISIONING_HOST_EXTERNAL_IPV6=1111:1:1::1
fi
Expand Down