mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-04-26 02:30:35 +00:00
* delete CSI volumesnapshots in backup on backup delete Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * set vsc deletionpolicy to delete prior to vs deletion Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * add more unit tests Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * add change log Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * passes build need to pass unit tests Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * remove GetNamespacesInBackup Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * fix unit tests Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * check feature flag instead of nil check Signed-off-by: Ashish Amarnath <ashisham@vmware.com> * cleanup Signed-off-by: Ashish Amarnath <ashisham@vmware.com>
40 lines
940 B
Bash
Executable File
40 lines
940 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2016 The Kubernetes Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
TARGETS=(
|
|
./cmd/...
|
|
./pkg/...
|
|
)
|
|
|
|
if [[ ${#@} -ne 0 ]]; then
|
|
TARGETS=("$@")
|
|
fi
|
|
|
|
echo "Running tests:" "${TARGETS[@]}"
|
|
|
|
if [[ -n "${GOFLAGS:-}" ]]; then
|
|
echo "GOFLAGS: ${GOFLAGS}"
|
|
fi
|
|
|
|
go test -installsuffix "static" -timeout 60s -v "${TARGETS[@]}"
|
|
echo "Success!"
|