]> git.ipfire.org Git - thirdparty/glibc.git/blame - malloc/tst-mtrace.sh
Add --enable-hardcoded-path-in-tests configure option
[thirdparty/glibc.git] / malloc / tst-mtrace.sh
CommitLineData
199d6eb0
UD
1#! /bin/sh
2# Testing the mtrace function.
568035b7 3# Copyright (C) 2000-2013 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
740b3dbe 23test_program_prefix=$1; shift
199d6eb0
UD
24
25status=0
3f36c563 26trap "rm -f ${common_objpfx}malloc/tst-mtrace.leak; exit 1" 1 2 15
199d6eb0 27
3f36c563 28MALLOC_TRACE=${common_objpfx}malloc/tst-mtrace.leak \
199d6eb0 29LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}iconvdata \
740b3dbe 30${test_program_prefix} \
199d6eb0
UD
31 ${common_objpfx}malloc/tst-mtrace || status=1
32
d6a25063 33if test $status -eq 0 && test -f ${common_objpfx}malloc/mtrace; then
504417ac 34 ${common_objpfx}malloc/mtrace ${common_objpfx}malloc/tst-mtrace.leak \
3f36c563 35 > ${common_objpfx}malloc/tst-mtrace.out|| status=1
d6a25063
UD
36fi
37
3f36c563
UD
38rm -f ${common_objpfx}malloc/tst-mtrace.leak
39
199d6eb0 40exit $status