libtest.sh: Remove duplicate ERR trap and report_err()
Since #2377 was merged, this is in libtest-core.sh, which is sourced by libtest.sh. Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
b6a55ab8f3
commit
3cc4f8710f
|
|
@ -46,14 +46,6 @@ run_exit_cmds() {
|
||||||
}
|
}
|
||||||
trap run_exit_cmds EXIT
|
trap run_exit_cmds EXIT
|
||||||
|
|
||||||
report_err () {
|
|
||||||
local exit_status="$?"
|
|
||||||
{ { local BASH_XTRACEFD=3; } 2> /dev/null
|
|
||||||
echo "Unexpected nonzero exit status $exit_status while running: $BASH_COMMAND" >&2
|
|
||||||
} 3> /dev/null
|
|
||||||
}
|
|
||||||
trap report_err ERR
|
|
||||||
|
|
||||||
save_core() {
|
save_core() {
|
||||||
if [ -e core ]; then
|
if [ -e core ]; then
|
||||||
cp core "$test_srcdir/core"
|
cp core "$test_srcdir/core"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue