Changeset 5f3222b in mod_gnutls
- Timestamp:
- Mar 5, 2017, 9:22:29 AM (5 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- 4fb510d
- Parents:
- 0b83b21
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/runtests
r0b83b21 r5f3222b 34 34 function pinpoint_error() 35 35 { 36 echo "${1} failed at line ${2}!" >&2 37 } 38 trap 'pinpoint_error ${BASH_SOURCE} ${LINENO}' ERR 36 echo "Command \"${BASH_COMMAND}\" failed. Call trace:" >&2 37 local stack=0 38 while caller $((stack++)) >&2; do true; done 39 } 40 trap 'pinpoint_error' ERR 39 41 40 42 function stop_msva()
Note: See TracChangeset
for help on using the changeset viewer.