From 34c86f425441d13e9e6cebd2ce1ebd99fc373ce2 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 8 Feb 2003 18:29:49 +0000 Subject: Update. 2003-02-08 Ulrich Drepper * io/ftwtest.c: Get current working directory before and after the nftw call and make sure they match. 2003-02-08 Jim Meyering * ftw.c (ftw_startup): When using FTW_CHDIR, always remember the current directory, not just when DIR contains a slash. Reported by Manoj Srivastava. --- io/ftwtest.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'io/ftwtest.c') diff --git a/io/ftwtest.c b/io/ftwtest.c index 851ed1d587..4f527997df 100644 --- a/io/ftwtest.c +++ b/io/ftwtest.c @@ -70,9 +70,22 @@ main (int argc, char *argv[]) if (do_phys) flag |= FTW_PHYS; + char *cw1 = getcwd (NULL, 0); + r = nftw (optind < argc ? argv[optind] : ".", cb, do_exit ? 1 : 3, flag); if (r < 0) perror ("nftw"); + + char *cw2 = getcwd (NULL, 0); + + if (strcmp (cw1, cw2) != 0) + { + printf ("current working directory before and after nftw call differ:\n" + "before: %s\n" + "after: %s\n", cw1, cw2); + exit (1); + } + if (do_exit) { puts (r == 26 ? "succeeded" : "failed"); -- cgit v1.2.1