mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 22:45:46 +03:00
4aa6f77a61
Merge in DNS/adguard-home from imp-tests to master Squashed commit of the following: commit 15e1bd4ac38e95aa7dce716679d9a6bea43c5964 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jan 29 19:41:03 2021 +0300 scripts: imp docs commit bc54ce4e703dd4b2956636e0bd554073c9aa12c6 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Jan 29 19:39:26 2021 +0300 all: imp tests, docs
43 lines
808 B
Bash
43 lines
808 B
Bash
#!/bin/sh
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
|
|
# 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'
|
|
x_flags='-x'
|
|
elif [ "$verbose" -gt '0' ]
|
|
then
|
|
set -x
|
|
v_flags='-v'
|
|
x_flags=''
|
|
else
|
|
set +x
|
|
v_flags=''
|
|
x_flags=''
|
|
fi
|
|
|
|
set -e -f -u
|
|
|
|
race="${RACE:-1}"
|
|
if [ "$race" = '0' ]
|
|
then
|
|
race_flags=''
|
|
else
|
|
race_flags='--race'
|
|
fi
|
|
|
|
readonly go="${GO:-go}"
|
|
readonly timeout_flags="${TIMEOUT_FLAGS:---timeout 30s}"
|
|
readonly cover_flags='--coverprofile ./coverage.txt'
|
|
readonly count_flags='--count 1'
|
|
|
|
# Don't use quotes with flag variables because we want an empty space if
|
|
# those aren't set.
|
|
"$go" test $count_flags $cover_flags $race_flags $timeout_flags\
|
|
$x_flags $v_flags ./...
|