aboutsummaryrefslogtreecommitdiff
path: root/io/ftwtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/ftwtest.c')
-rw-r--r--io/ftwtest.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/io/ftwtest.c b/io/ftwtest.c
index 6079265175..851ed1d587 100644
--- a/io/ftwtest.c
+++ b/io/ftwtest.c
@@ -3,6 +3,7 @@
#include <mcheck.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
@@ -10,12 +11,14 @@
int do_depth;
int do_chdir;
int do_phys;
+int do_exit;
struct option options[] =
{
{ "depth", no_argument, &do_depth, 1 },
{ "chdir", no_argument, &do_chdir, 1 },
{ "phys", no_argument, &do_phys, 1 },
+ { "early-exit", no_argument, &do_exit, 1 },
{ NULL, 0, NULL, 0 }
};
@@ -31,9 +34,12 @@ const char *flag2name[] =
};
-int
+static int
cb (const char *name, const struct stat *st, int flag, struct FTW *f)
{
+ if (do_exit && strcmp (name + f->base, "file@2"))
+ return 0;
+
printf ("base = \"%.*s\", file = \"%s\", flag = %s",
f->base, name, name + f->base, flag2name[flag]);
if (do_chdir)
@@ -43,7 +49,7 @@ cb (const char *name, const struct stat *st, int flag, struct FTW *f)
free (cwd);
}
printf (", level = %d\n", f->level);
- return 0;
+ return do_exit ? 26 : 0;
}
int
@@ -64,8 +70,13 @@ main (int argc, char *argv[])
if (do_phys)
flag |= FTW_PHYS;
- r = nftw (optind < argc ? argv[optind] : ".", cb, 3, flag);
- if (r)
+ r = nftw (optind < argc ? argv[optind] : ".", cb, do_exit ? 1 : 3, flag);
+ if (r < 0)
perror ("nftw");
+ if (do_exit)
+ {
+ puts (r == 26 ? "succeeded" : "failed");
+ return r == 26 ? 0 : 1;
+ }
return r;
}