mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 00:37:00 +08:00
Merge branch 'tmp-coverage-check' into 'master'
Include debugging output into our coverage tests See merge request openconnect/ocserv!251
This commit is contained in:
@@ -16,7 +16,7 @@ resource_rules:
|
||||
actions:
|
||||
status: close
|
||||
comment: |
|
||||
{{author}} This issue was marked as needinfo with no update for long time. We are now closing it, but please re-open if it is still relevant. This is an automated message.
|
||||
{{author}} This issue was marked as needinfo with no update for long time. We are now closing it, but please add the necessary information and re-open if it is still relevant. This is an automated message.
|
||||
|
||||
merge_requests:
|
||||
rules:
|
||||
|
||||
@@ -35,13 +35,19 @@ if test "${DISABLE_ASAN_BROKEN_TESTS}" = 1;then
|
||||
ISOLATE_WORKERS=false
|
||||
fi
|
||||
|
||||
if test -z "$NO_NEED_ROOT";then
|
||||
if test -z "${NO_NEED_ROOT}";then
|
||||
if test "$(id -u)" != "0";then
|
||||
echo "You need to run this script as root"
|
||||
exit 77
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase verbosity as this disables the anti-debugging measures
|
||||
# of the worker processes.
|
||||
if test "${COVERAGE}" = "1" && test -z "${VERBOSE}";then
|
||||
VERBOSE=1
|
||||
fi
|
||||
|
||||
# NO_NEED_ROOT implies NEED_SOCKET_WRAPPER
|
||||
if test "${NEED_SOCKET_WRAPPER}" = 1 || test "${NO_NEED_ROOT}" = 1;then
|
||||
SOCKDIR="${srcdir}/tmp/sockwrap.$$.tmp"
|
||||
|
||||
Reference in New Issue
Block a user