about summary refs log tree commit diff
path: root/stdlib/test-a64l.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-02-14 09:25:02 +0000
committerUlrich Drepper <drepper@redhat.com>2002-02-14 09:25:02 +0000
commit425838aa4b78c3fa9d43d75d85ebdc15f96f52d7 (patch)
treec96475fe61a3b11f029d6e63c214d4817a330164 /stdlib/test-a64l.c
parentfc093be16082b406ee160762d773a791a5b3b965 (diff)
downloadglibc-425838aa4b78c3fa9d43d75d85ebdc15f96f52d7.tar.gz
glibc-425838aa4b78c3fa9d43d75d85ebdc15f96f52d7.tar.xz
glibc-425838aa4b78c3fa9d43d75d85ebdc15f96f52d7.zip
Update.
2002-02-14  Ulrich Drepper  <drepper@redhat.com>

	* stdlib/test-a64l.c (tests): Add more test cases.

	* sunrpc/rtime.c (rtime): Change type of thetime to uint32_t.
	Reported by Walter Harms <WHarms@bfs.de>.

2002-02-11  Jes Sorensen  <jes@trained-monkey.org>

	* sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add sc_flag bit
	definitions for struct sigcontext.
	Suggested by David Mosberger-Tang.
Diffstat (limited to 'stdlib/test-a64l.c')
-rw-r--r--stdlib/test-a64l.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/stdlib/test-a64l.c b/stdlib/test-a64l.c
index 31ef5ea2c7..2fc10d65e5 100644
--- a/stdlib/test-a64l.c
+++ b/stdlib/test-a64l.c
@@ -1,5 +1,5 @@
 /* Test program for the l64a and a64l functions.
-   Copyright (C) 2001 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Schwab <schwab@suse.de>.
 
@@ -38,6 +38,12 @@ static const struct a64l_test tests[] =
     { "", 0 },
     { "/", 1 },
     { "FT", 2001 },
+    { "zzzzz1", 0xffffffff },
+    { "zzzz1", 0x3ffffff },
+    { "zzz1", 0xfffff },
+    { "zz1", 0x3fff },
+    { "z1", 0xff },
+    { "1", 0x3 },
     { NULL, 0 }
   };