mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
* malloc/Makefile (test-srcs): Add tst-mtrace. (distribute): Add tst-mtrace.sh. Add rule to run tst-mtrace.sh. * malloc/tst-mtrace.c: New file. * malloc/tst-mtrace.sh: New file.
This commit is contained in:
parent
3eea1bc969
commit
199d6eb060
@ -1,5 +1,11 @@
|
||||
2000-07-06 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* malloc/Makefile (test-srcs): Add tst-mtrace.
|
||||
(distribute): Add tst-mtrace.sh.
|
||||
Add rule to run tst-mtrace.sh.
|
||||
* malloc/tst-mtrace.c: New file.
|
||||
* malloc/tst-mtrace.sh: New file.
|
||||
|
||||
* include/signal.h: Declare __libc_sigaction.
|
||||
* sysdeps/unix/sysv/linux/Versions: Export __libc_sigaction.
|
||||
* sysdeps/unix/sysv/linux/sigaction.c: Add __libc_sigaction alias.
|
||||
|
@ -26,9 +26,10 @@ all:
|
||||
dist-headers := malloc.h
|
||||
headers := $(dist-headers) obstack.h mcheck.h
|
||||
tests := mallocbug tst-malloc tst-valloc tst-calloc
|
||||
test-srcs = tst-mtrace
|
||||
|
||||
distribute = thread-m.h mtrace.pl mcheck-init.c stackinfo.h memusage.h \
|
||||
memusage.sh memusagestat.c
|
||||
memusage.sh memusagestat.c tst-mtrace.sh
|
||||
|
||||
# Things which get pasted together into gmalloc.c.
|
||||
gmalloc-routines := malloc morecore
|
||||
@ -91,6 +92,11 @@ $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
|
||||
lib: $(objpfx)libmcheck.a
|
||||
|
||||
|
||||
.PHONY: do-tst-mtrace
|
||||
tests: do-tst-mtrace
|
||||
do-tst-mtrace: tst-mtrace.sh $(objpfx)tst-mtrace
|
||||
$(SHELL) -e $< $(common-objpfx)
|
||||
|
||||
# Uncomment this for test releases. For public releases it is too expensive.
|
||||
#CPPFLAGS-malloc.o += -DMALLOC_DEBUG
|
||||
|
||||
|
30
malloc/tst-mtrace.sh
Executable file
30
malloc/tst-mtrace.sh
Executable file
@ -0,0 +1,30 @@
|
||||
#! /bin/sh
|
||||
# Testing the mtrace function.
|
||||
# Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
# This file is part of the GNU C Library.
|
||||
#
|
||||
# The GNU C Library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public License as
|
||||
# published by the Free Software Foundation; either version 2 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# The GNU C Library is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# Library General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Library General Public
|
||||
# License along with the GNU C Library; see the file COPYING.LIB. If
|
||||
# not, write to the Free Software Foundation, Inc.,
|
||||
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
common_objpfx=$1; shift
|
||||
|
||||
status=0
|
||||
|
||||
MALLOC_TRACE=${common_objpfx}tst-mtrace.out \
|
||||
LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}iconvdata \
|
||||
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
||||
${common_objpfx}malloc/tst-mtrace || status=1
|
||||
|
||||
exit $status
|
Loading…
Reference in New Issue
Block a user