21 lines
363 B
Bash
Executable File
21 lines
363 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 -v $PKGS -ginkgo.randomizeAllSpecs -ginkgo.failOnPending -ginkgo.progress
|