1
0
mirror of https://github.com/opencontainers/umoci.git synced 2026-02-06 12:45:35 +01:00
Files
umoci/hack/test-unit.sh
Aleksa Sarai 712f78763a *: update license headers
Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
2026-01-10 11:14:14 +01:00

53 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# umoci: Umoci Modifies Open Containers' Images
# Copyright (C) 2016-2025 SUSE LLC
# Copyright (C) 2026 Aleksa Sarai <cyphar@cyphar.com>
#
# 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 -Eeuxo pipefail
source "$(dirname "$BASH_SOURCE")/readlinkf.sh"
export ROOT="$(readlinkf_posix "$(dirname "$BASH_SOURCE")/..")"
GO="${GO:-go}"
PROJECT="${PROJECT:-github.com/opencontainers/umoci}"
extra_args=("$@")
GOCOVERDIR="${GOCOVERDIR:-}"
[ -z "$GOCOVERDIR" ] || mkdir -p "$GOCOVERDIR"
# NOTE: As part of the <https://github.com/golang/go/issues/73842> workaround,
# GOCOVERDIR needs to be an absolute path.
[[ "$GOCOVERDIR" =~ ^/ ]] || GOCOVERDIR="$PWD/$GOCOVERDIR"
# If we have to generate a coverage file, make sure the coverage covers the
# entire project and not just the package being tested. This mirrors
# ${TEST_BUILD_FLAGS} from the Makefile.
extra_args+=("-covermode=count" "-coverpkg=$PROJECT/...")
# -test.gocoverdir= needs to be put after the other arguments are parsed
# because it is a Go internal that is not properly handled by "go test" and
# putting it earlier will result in "./..." being misparsed. See
# <https://github.com/golang/go/issues/73842> for more details.
gocoverdir_args=()
if [ -n "$GOCOVERDIR" ]
then
gocoverdir_args+=("-args" "-test.gocoverdir=$GOCOVERDIR")
fi
# Run the tests.
"$GO" test -v -cover "${extra_args[@]}" "$PROJECT/..." "${gocoverdir_args[@]}"