diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2015-08-08 15:53:03 -0700 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2015-08-08 15:53:03 -0700 |
commit | 0f58539030e436449f79189b6edab17d7479796e (patch) | |
tree | 1f43408602c20aab6c51e6c69cb1a82cc6b82eb2 /catgets/Makefile | |
parent | 74bc0c3a16e3c8f138e29a284e84d16474b65a8e (diff) | |
download | glibc-0f58539030e436449f79189b6edab17d7479796e.tar glibc-0f58539030e436449f79189b6edab17d7479796e.tar.gz glibc-0f58539030e436449f79189b6edab17d7479796e.tar.bz2 glibc-0f58539030e436449f79189b6edab17d7479796e.zip |
Fix BZ #17905
Diffstat (limited to 'catgets/Makefile')
-rw-r--r-- | catgets/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/catgets/Makefile b/catgets/Makefile index 4624a88bd5..56de38be4d 100644 --- a/catgets/Makefile +++ b/catgets/Makefile @@ -34,6 +34,7 @@ test-srcs = test-gencat ifeq ($(run-built-tests),yes) tests-special += $(objpfx)de/libc.cat $(objpfx)test1.cat $(objpfx)test2.cat \ $(objpfx)sample.SJIS.cat $(objpfx)test-gencat.out +tests-special += $(objpfx)tst-catgets-mem.out endif gencat-modules = xmalloc @@ -50,9 +51,11 @@ catgets-CPPFLAGS := -DNLSPATH='"$(msgcatdir)/%L/%N:$(msgcatdir)/%L/LC_MESSAGES/% generated += de.msg test1.cat test1.h test2.cat test2.h sample.SJIS.cat \ test-gencat.h +generated += tst-catgets.mtrace tst-catgets-mem.out + generated-dirs += de -tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de +tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de MALLOC_TRACE=$(objpfx)tst-catgets.mtrace ifeq ($(run-built-tests),yes) # This test just checks whether the program produces any error or not. @@ -86,4 +89,8 @@ $(objpfx)test-gencat.out: test-gencat.sh $(objpfx)test-gencat \ $(objpfx)sample.SJIS.cat: sample.SJIS $(objpfx)gencat $(built-program-cmd) -H $(objpfx)test-gencat.h < $(word 1,$^) > $@; \ $(evaluate-test) + +$(objpfx)tst-catgets-mem.out: $(objpfx)tst-catgets.out + $(common-objpfx)malloc/mtrace $(objpfx)tst-catgets.mtrace > $@; \ + $(evaluate-test) endif |