mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Update.
* catgets/Makefile: Add rules to run test2.msg test. * catgets/test2.msg: New file.
This commit is contained in:
parent
819c56e76d
commit
c780aa2137
@ -17,6 +17,8 @@
|
|||||||
auto-assigned numbers and user-defined nubmers is not fatal.
|
auto-assigned numbers and user-defined nubmers is not fatal.
|
||||||
Handle it.
|
Handle it.
|
||||||
Patch by Michael M. Lampkin <michael.lampkin@ieee.org>.
|
Patch by Michael M. Lampkin <michael.lampkin@ieee.org>.
|
||||||
|
* catgets/Makefile: Add rules to run test2.msg test.
|
||||||
|
* catgets/test2.msg: New file.
|
||||||
|
|
||||||
* catgets/gencat.c (main): Return 1 if messages have been printed.
|
* catgets/gencat.c (main): Return 1 if messages have been printed.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1996,1997,1998,1999,2000,2002 Free Software Foundation, Inc.
|
# Copyright (C) 1996-2000, 2002, 2003 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -22,7 +22,7 @@
|
|||||||
subdir := catgets
|
subdir := catgets
|
||||||
|
|
||||||
headers = nl_types.h
|
headers = nl_types.h
|
||||||
distribute = catgetsinfo.h config.h xopen-msg.sed test1.msg \
|
distribute = catgetsinfo.h config.h xopen-msg.sed test1.msg test2.msg \
|
||||||
test-gencat.sh sample.SJIS
|
test-gencat.sh sample.SJIS
|
||||||
routines = catgets open_catalog
|
routines = catgets open_catalog
|
||||||
others = gencat
|
others = gencat
|
||||||
@ -47,19 +47,25 @@ catgets-CPPFLAGS := -DNLSPATH='"$(msgcatdir)/%L/%N:$(msgcatdir)/%L/LC_MESSAGES/%
|
|||||||
|
|
||||||
CPPFLAGS-gencat = -DNOT_IN_libc
|
CPPFLAGS-gencat = -DNOT_IN_libc
|
||||||
|
|
||||||
generated = de.msg test1.cat test1.h sample.SJIS.cat test-gencat.h
|
generated = de.msg test1.cat test1.h test2.cat test2.h sample.SJIS.cat \
|
||||||
|
test-gencat.h
|
||||||
generated-dirs = de
|
generated-dirs = de
|
||||||
|
|
||||||
tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de
|
tst-catgets-ENV = NLSPATH="$(objpfx)%l/%N.cat" LANG=de
|
||||||
|
|
||||||
ifneq ($(cross-compiling),yes)
|
ifneq ($(cross-compiling),yes)
|
||||||
tests: $(objpfx)de/libc.cat $(objpfx)test1.cat $(objpfx)test-gencat.out
|
tests: $(objpfx)de/libc.cat $(objpfx)test1.cat $(objpfx)test2.cat \
|
||||||
|
$(objpfx)test-gencat.out
|
||||||
# This test just checks whether the program produces any error or not.
|
# This test just checks whether the program produces any error or not.
|
||||||
# The result is not tested.
|
# The result is not tested.
|
||||||
$(objpfx)test1.cat: test1.msg $(objpfx)gencat
|
$(objpfx)test1.cat: test1.msg $(objpfx)gencat
|
||||||
LC_ALL=hr_HR.ISO-8859-2 LOCPATH=$(common-objpfx)localedata \
|
LC_ALL=hr_HR.ISO-8859-2 LOCPATH=$(common-objpfx)localedata \
|
||||||
GCONV_PATH=$(common-objpfx)iconvdata \
|
GCONV_PATH=$(common-objpfx)iconvdata \
|
||||||
$(built-program-cmd) -H $(objpfx)test1.h $@ $<
|
$(built-program-cmd) -H $(objpfx)test1.h $@ $<
|
||||||
|
$(objpfx)test2.cat: test2.msg $(objpfx)gencat
|
||||||
|
LOCPATH=$(common-objpfx)localedata \
|
||||||
|
GCONV_PATH=$(common-objpfx)iconvdata \
|
||||||
|
$(built-program-cmd) -H $(objpfx)test2.h $@ $<
|
||||||
$(objpfx)de/libc.cat: $(objpfx)de.msg $(objpfx)gencat
|
$(objpfx)de/libc.cat: $(objpfx)de.msg $(objpfx)gencat
|
||||||
$(make-target-directory)
|
$(make-target-directory)
|
||||||
LC_ALL=de_DE.ISO-8859-1 LOCPATH=$(common-objpfx)localedata \
|
LC_ALL=de_DE.ISO-8859-1 LOCPATH=$(common-objpfx)localedata \
|
||||||
|
8
catgets/test2.msg
Normal file
8
catgets/test2.msg
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
$set 42
|
||||||
|
$ Two messages with auto-assigned numbers.
|
||||||
|
Number1 Auto-assigned #1
|
||||||
|
Number2 Auto-assigned #2
|
||||||
|
$ Three messages with explicitly assigned numbers.
|
||||||
|
0 Explicitly assigned #1
|
||||||
|
1 Explicitly assigned #2
|
||||||
|
2 Explicitly assigned #3
|
@ -1,6 +1,6 @@
|
|||||||
2003-02-22 Ulrich Drepper <drepper@redhat.com>
|
2003-02-22 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* Makefile (before-compile): Add $(objpfx)banner.h.
|
* Makefile: Add dependency for $(objpfx)version.d.
|
||||||
|
|
||||||
* eintr.c (eintr_source): Add unnecessary return but the compiler
|
* eintr.c (eintr_source): Add unnecessary return but the compiler
|
||||||
insists.
|
insists.
|
||||||
|
Loading…
Reference in New Issue
Block a user