]> git.ipfire.org Git - thirdparty/glibc.git/blame - malloc/tst-mtrace.sh
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / malloc / tst-mtrace.sh
CommitLineData
199d6eb0
UD
1#! /bin/sh
2# Testing the mtrace function.
b168057a 3# Copyright (C) 2000-2015 Free Software Foundation, Inc.
199d6eb0 4# This file is part of the GNU C Library.
41bdb6e2 5
199d6eb0 6# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7# modify it under the terms of the GNU Lesser General Public
8# License as published by the Free Software Foundation; either
9# version 2.1 of the License, or (at your option) any later version.
10
199d6eb0
UD
11# The GNU C Library is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2
AJ
14# Lesser General Public License for more details.
15
16# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17# License along with the GNU C Library; if not, see
18# <http://www.gnu.org/licenses/>.
199d6eb0 19
57c69bef
DL
20set -e
21
199d6eb0 22common_objpfx=$1; shift
8540f6d2
JM
23test_program_prefix_before_env=$1; shift
24run_program_env=$1; shift
25test_program_prefix_after_env=$1; shift
199d6eb0
UD
26
27status=0
3f36c563 28trap "rm -f ${common_objpfx}malloc/tst-mtrace.leak; exit 1" 1 2 15
199d6eb0 29
8540f6d2
JM
30${test_program_prefix_before_env} \
31${run_program_env} \
3f36c563 32MALLOC_TRACE=${common_objpfx}malloc/tst-mtrace.leak \
8540f6d2 33${test_program_prefix_after_env} \
199d6eb0
UD
34 ${common_objpfx}malloc/tst-mtrace || status=1
35
d6a25063 36if test $status -eq 0 && test -f ${common_objpfx}malloc/mtrace; then
504417ac 37 ${common_objpfx}malloc/mtrace ${common_objpfx}malloc/tst-mtrace.leak \
3f36c563 38 > ${common_objpfx}malloc/tst-mtrace.out|| status=1
d6a25063
UD
39fi
40
3f36c563
UD
41rm -f ${common_objpfx}malloc/tst-mtrace.leak
42
199d6eb0 43exit $status