mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-10-26 11:27:18 +00:00
Merge in DNS/adguard-home from upd-go to master
Squashed commit of the following:
commit 0e13d6863a3d463289823a27414b427cb76be88c
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Feb 7 20:20:14 2023 +0300
scripts: try increasing test timeout
commit 8e7d230e40de8f49a2b74a6d32a7fc78a361edab
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Feb 7 20:00:17 2023 +0300
all: upd quic-go; imp atomic values
commit fae2b75b6990f2bd77e5c019a35a72322bac85f7
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Feb 7 17:36:33 2023 +0300
all: upd go, deps; imp atomic values
48 lines
890 B
Bash
48 lines
890 B
Bash
#!/bin/sh
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
# Verbosity levels:
|
|
# 0 = Don't print anything except for errors.
|
|
# 1 = Print commands, but not nested commands.
|
|
# 2 = Print everything.
|
|
if [ "$verbose" -gt '1' ]
|
|
then
|
|
set -x
|
|
v_flags='-v=1'
|
|
x_flags='-x=1'
|
|
elif [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
v_flags='-v=1'
|
|
x_flags='-x=0'
|
|
else
|
|
set +x
|
|
v_flags='-v=0'
|
|
x_flags='-x=0'
|
|
fi
|
|
readonly v_flags x_flags
|
|
|
|
set -e -f -u
|
|
|
|
if [ "${RACE:-1}" -eq '0' ]
|
|
then
|
|
race_flags='--race=0'
|
|
else
|
|
race_flags='--race=1'
|
|
fi
|
|
readonly race_flags
|
|
|
|
go="${GO:-go}"
|
|
readonly go
|
|
|
|
count_flags='--count=1'
|
|
cover_flags='--coverprofile=./coverage.txt'
|
|
shuffle_flags='--shuffle=on'
|
|
timeout_flags="${TIMEOUT_FLAGS:---timeout=60s}"
|
|
readonly count_flags cover_flags shuffle_flags timeout_flags
|
|
|
|
"$go" test "$count_flags" "$cover_flags" "$race_flags" "$shuffle_flags" "$timeout_flags"\
|
|
"$x_flags" "$v_flags" ./...
|