summaryrefslogtreecommitdiff
path: root/io/test-lfs.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-06-11 08:43:24 +0000
committerAndreas Jaeger <aj@suse.de>2001-06-11 08:43:24 +0000
commit207390f763c23b7db63ddfea36793b657da431fe (patch)
tree4b17c31f3f6d5da6940e9b20423a284c86860fcd /io/test-lfs.c
parenta854060c51a7bc99c45324811ea22ba634c6a271 (diff)
Update.
2001-06-11 Michael Deutschmann <michael@talamasca.ocis.net> * rt/tst-aio4.c (do_test): Test whether rt signals are supported. Use my_signo instead of MY_SIGNO and initialize it so that the used signal is always available. 2001-06-11 Andreas Jaeger <aj@suse.de>, Michael Deutschmann <michael@talamasca.ocis.net> * io/test-lfs.c (do_prepare): Clean up error messages. (test_ftello): Check for EFBIG and ENOSP, clean up error messages. (do_test): Likewise. 2001-06-11 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (IXANY, IUCLC, IMAXBEL): Make always visible since they're needed by POSIX. Closes PR libc/2320, reported by Chris Yeoh <cyeoh@samba.org>. 2001-06-10 Ben Collins <bcollins@debian.org> * sysdeps/arm/elf/start.S: Use #function, not @function, for .type of _start. * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Include limits.h to get INT_MAX. 2001-06-07 H.J. Lu <hjl@gnu.org> * sunrpc/rpc/rpc.h: Add __BEGIN_DECLS/__END_DECLS.
Diffstat (limited to 'io/test-lfs.c')
-rw-r--r--io/test-lfs.c38
1 files changed, 25 insertions, 13 deletions
diff --git a/io/test-lfs.c b/io/test-lfs.c
index a08801f7af..db17db2966 100644
--- a/io/test-lfs.c
+++ b/io/test-lfs.c
@@ -65,7 +65,7 @@ do_prepare (int argc, char *argv[])
if (errno == ENOSYS)
{
/* Fail silently. */
- error (0, errno, "open64 is not supported");
+ error (0, 0, "open64 is not supported");
exit (EXIT_SUCCESS);
}
else
@@ -100,29 +100,35 @@ test_ftello (void)
ret = fseeko64 (f, TWO_GB+100, SEEK_SET);
if (ret == -1 && errno == ENOSYS)
{
- error (0, errno, "fseeko64 is not supported");
+ error (0, 0, "fseeko64 is not supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == EINVAL)
{
- error (0, errno, "LFS seems not to be supported ");
+ error (0, 0, "LFS seems not to be supported");
exit (EXIT_SUCCESS);
}
if (ret == -1)
{
- error (0, errno, "fseeko64 failed with error: ");
+ error (0, errno, "fseeko64 failed with error");
exit (EXIT_FAILURE);
}
ret = fwrite ("Hello", 1, 5, f);
- if (ret == -1 && errno == EINVAL)
+ if (ret == -1 && errno == EFBIG)
+ {
+ error (0, errno, "LFS seems not to be supported");
+ exit (EXIT_SUCCESS);
+ }
+
+ if (ret == -1 && errno == ENOSPC)
{
- error (0, errno, "LFS seems not to be supported.");
+ error (0, 0, "Not enough space to write file.");
exit (EXIT_SUCCESS);
}
if (ret != 5)
- error (EXIT_FAILURE, errno, "cannot write test string to large file");
+ error (EXIT_FAILURE, errno, "Cannot write test string to large file");
pos = ftello64 (f);
@@ -144,24 +150,30 @@ do_test (int argc, char *argv[])
ret = lseek64 (fd, TWO_GB+100, SEEK_SET);
if (ret == -1 && errno == ENOSYS)
{
- error (0, errno, "lseek64 is not supported");
+ error (0, 0, "lseek64 is not supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1 && errno == EINVAL)
{
- error (0, errno, "LFS seems not to be supported ");
+ error (0, 0, "LFS seems not to be supported.");
exit (EXIT_SUCCESS);
}
if (ret == -1)
{
- error (0, errno, "lseek64 failed with error: ");
+ error (0, errno, "lseek64 failed with error");
exit (EXIT_FAILURE);
}
ret = write (fd, "Hello", 5);
- if (ret == -1 && errno == EINVAL)
+ if (ret == -1 && errno == EFBIG)
+ {
+ error (0, 0, "LFS seems not to be supported.");
+ exit (EXIT_SUCCESS);
+ }
+
+ if (ret == -1 && errno == ENOSPC)
{
- error (0, errno, "LFS seems not to be supported.");
+ error (0, 0, "Not enough space to write file.");
exit (EXIT_SUCCESS);
}
@@ -176,7 +188,7 @@ do_test (int argc, char *argv[])
ret = stat64 (name, &statbuf);
if (ret == -1 && (errno == ENOSYS || errno == EOVERFLOW))
- error (0, errno, "stat64 is not supported");
+ error (0, 0, "stat64 is not supported.");
else if (ret == -1)
error (EXIT_FAILURE, errno, "cannot stat file `%s'", name);
else if (statbuf.st_size != (TWO_GB + 100 + 5))