
The test named "correctly handles multiple DELs for the same container" in the ipam/dhcp package experiences race conditions when multiple goroutines concurrently access and modify the Args struct (of type CmdArgs). To address these issues, a copy of the CmdArgs struct is now created in each function to eliminate data races. Also, the test-linux.sh and test-windows.sh scripts have been updated to include the '-race' flag, enabling race detection during testing. This change helps prevent future race conditions by activating the Go race detector. Signed-off-by: Alina Sudakov <asudakov@redhat.com>
21 lines
369 B
Bash
Executable File
21 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Run CNI plugin tests.
|
|
#
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
|
|
source ./build_windows.sh
|
|
|
|
echo "Running tests"
|
|
|
|
PKGS="./pkg/hns/..."
|
|
|
|
PLUGINS=$(cat plugins/windows_only.txt | dos2unix )
|
|
for d in $PLUGINS; do
|
|
PKGS="$PKGS ./$d/..."
|
|
done
|
|
|
|
echo "testing packages $PKGS"
|
|
go test -race -v $PKGS -ginkgo.randomizeAllSpecs -ginkgo.failOnPending -ginkgo.progress
|