glibc/io/tst-getcwd.c

180 lines
4.4 KiB
C
Raw Normal View History

/* Test of getcwd function.
Copyright (C) 2000-2022 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 Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
Prefer https to http for gnu.org and fsf.org URLs Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 07:40:42 +02:00
<https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/param.h>
#include <libc-diag.h>
#define TEST_FUNCTION do_test ()
static int
do_test (void)
{
char thepath[4096]; /* Yes, this limits the environment this test
can run it but I honestly don't care about
people which have this problem. */
char *bufs[10];
size_t lens[10];
size_t sbs;
* catgets/open_catalog.c (__open_catalog): Don't use a value type as the __builtin_expect expression, just the Boolean value. * sysdeps/generic/wordexp.c (parse_glob): int -> size_t for counter. * sysdeps/unix/sysv/linux/opensock.c (__opensock): Likewise. * resolv/res_hconf.c (arg_service_list, parse_line): Likewise. * iconvdata/tst-loading.c (main): Likewise. * catgets/tst-catgets.c (main): Likewise. * stdlib/tst-xpg-basename.c (main): Likewise. * stdlib/tst-bsearch.c (main): Likewise. * stdio-common/test-vfprintf.c (main): Likewise. * stdio-common/tst-rndseek.c (do_test): Likewise. * libio/tst_swprintf.c (main): Likewise. * libio/tst-fgetws.c (main): Likewise. * wcsmbs/tst-mbrtowc.c (check_ascii): Likewise. * time/tst-posixtz.c (main): Likewise. * time/tst-strptime.c (test_tm): Likewise. * time/tst-strptime.c (main): Likewise. * time/tst-getdate.c (main): Likewise. * posix/tst-mmap.c (main): Likewise. * posix/tst-getaddrinfo.c (do_test): Likewise. * io/tst-getcwd.c (do_test): Likewise. * resolv/tst-aton.c (main): Likewise. * inet/tst-network.c (main): Likewise. * libio/tst-fgetws.c (main): Likewise. * sysdeps/posix/sprofil.c (add_region): int -> unsigned int for I. * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_r): int -> unsigned int for PTYNO. * stdlib/msort.c (qsort): Add a cast to silence warning. * stdio-common/vfprintf.c (process_string_arg): Likewise. * libio/oldfileops.c (_IO_old_do_write): Likewise. * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Likewise. * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise. * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise. * argp/argp-fmtstream.c (__argp_fmtstream_printf): Likewise. * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise. * sysdeps/unix/grantpt.c (grantpt): Likewise. * libio/tst-widetext.c (main): Likewise. * libio/tst-mmap2-eofsync.c (do_test): Likewise. * rt/tst-aio.c (test_file): Likewise. * rt/tst-aio64.c (test_file): Likewise. * resolv/tst-aton.c (main): Likewise. * catgets/catgetsinfo.h (CATGETS_MAGIC): Use U suffix on the constant. * ctype/ctype.c (__ctype_tolower, __ctype_toupper): Cast to int32_t instead of uint32_t in these macros.
2002-09-24 06:24:25 +02:00
size_t len, i;
if (getcwd (thepath, sizeof thepath) == NULL)
{
if (errno == ERANGE)
/* The path is too long, skip all tests. */
return 0;
puts ("getcwd (thepath, sizeof thepath) failed");
return 1;
}
len = strlen (thepath);
sbs = 1;
while (sbs < len + 1)
sbs <<= 1;
for (i = 0; i < 4; ++i)
{
lens[i] = sbs;
bufs[i] = (char *) malloc (sbs);
}
/* Avoid warnings about the first argument being null when the second
is nonzero. */
DIAG_PUSH_NEEDS_COMMENT;
DIAG_IGNORE_NEEDS_COMMENT (10.1, "-Wnonnull");
bufs[i] = getcwd (NULL, sbs);
DIAG_POP_NEEDS_COMMENT;
lens[i] = sbs;
if (bufs[i] == NULL)
{
puts ("getcwd (NULL, sbs) failed");
return 1;
}
++i;
for (; i < 10; sbs >>= 1, ++i)
{
bufs[i] = (char *) malloc (MAX (1, sbs));
lens[i] = sbs;
}
/* Before we test the result write something in the memory to see
whether the allocation went right. */
for (i = 0; i < 10; ++i)
if (i != 4 && bufs[i] != NULL)
memset (bufs[i], '\xff', lens[i]);
if (strcmp (thepath, bufs[4]) != 0)
{
printf ("\
getcwd (NULL, sbs) = \"%s\", getcwd (thepath, sizeof thepath) = \"%s\"\n",
bufs[4], thepath);
return 1;
}
/* Now overwrite all buffers to see that getcwd allocated the buffer
of right size. */
for (i = 0; i < 10; ++i)
memset (bufs[i], i, lens[i]);
for (i = 0; i < 10; ++i)
free (bufs[i]);
/* Test whether the function signals success despite the buffer
being too small.
Avoid warnings about the first argument being null when the second
is nonzero. */
DIAG_PUSH_NEEDS_COMMENT;
DIAG_IGNORE_NEEDS_COMMENT (10.1, "-Wnonnull");
if (getcwd (NULL, len) != NULL)
{
puts ("getcwd (NULL, len) didn't failed");
return 1;
}
DIAG_POP_NEEDS_COMMENT;
bufs[0] = malloc (len);
bufs[1] = malloc (len);
bufs[2] = malloc (len);
if (bufs[1] != NULL)
{
if (getcwd (bufs[1], len) != NULL)
{
puts ("getcwd (bufs[1], len) didn't failed");
return 1;
}
free (bufs[0]);
free (bufs[1]);
free (bufs[2]);
}
memset (thepath, '\xfe', sizeof (thepath));
if (getcwd (thepath, len) != NULL)
{
puts ("getcwd (thepath, len) didn't failed");
return 1;
}
for (i = len; i < sizeof thepath; ++i)
if (thepath[i] != '\xfe')
{
puts ("thepath[i] != '\xfe'");
return 1;
}
/* Now test handling of correctly sized buffers.
Again. avoid warnings about the first argument being null when
the second is nonzero. */
DIAG_PUSH_NEEDS_COMMENT;
DIAG_IGNORE_NEEDS_COMMENT (10.1, "-Wnonnull");
bufs[0] = getcwd (NULL, len + 1);
if (bufs[0] == NULL)
{
puts ("getcwd (NULL, len + 1) failed");
return 1;
}
DIAG_POP_NEEDS_COMMENT;
free (bufs[0]);
memset (thepath, '\xff', sizeof thepath);
if (getcwd (thepath, len + 1) == NULL)
{
puts ("getcwd (thepath, len + 1) failed");
return 1;
}
for (i = len + 1; i < sizeof thepath; ++i)
if (thepath[i] != '\xff')
{
2002-09-30 09:47:16 +02:00
printf ("thepath[%zd] != '\xff'\n", i);
return 1;
}
puts ("everything OK");
return 0;
}
#include "../test-skeleton.c"