Skip to content

Commit f5d92e2

Browse files
MetalLB E2E tests: Fix skip flag (#1324)
This is done to fix the following error: skip="L2' 'metrics"\|IPV6\|DUALSTACK' No idea what 'metrics"\\|IPV6\\|DUALSTACK' is! make: Leaving directory '/root/dev-scripts/metallb' make: *** [Makefile:19: run_e2e] Error 1 As there are spaces in the skip string variable we need to put quotes on it.
1 parent 15bbe7c commit f5d92e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metallb/run_e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ export RUN_FRR_CONTAINER_ON_HOST_NETWORK=true
4242
inv e2etest --kubeconfig=$(readlink -f ../../ocp/ostest/auth/kubeconfig) \
4343
--service-pod-port=8080 --system-namespaces="metallb-system" --skip-docker \
4444
--ipv4-service-range=192.168.10.0/24 --ipv6-service-range=fc00:f853:0ccd:e799::/124 \
45-
--skip=${SKIP}
45+
--skip="${SKIP}"

0 commit comments

Comments
 (0)