Fix POWER7 Implies
[glibc.git] / io / ftwtest.c
blob77debd28050c92c467fbcc5388ad36fa9c462130
1 #include <ftw.h>
2 #include <getopt.h>
3 #include <mcheck.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include <string.h>
7 #include <unistd.h>
8 #include <sys/stat.h>
11 int do_depth;
12 int do_chdir;
13 int do_phys;
14 int do_exit;
15 char *skip_subtree;
16 char *skip_siblings;
18 struct option options[] =
20 { "depth", no_argument, &do_depth, 1 },
21 { "chdir", no_argument, &do_chdir, 1 },
22 { "phys", no_argument, &do_phys, 1 },
23 { "skip-subtree", required_argument, NULL, 't' },
24 { "skip-siblings", required_argument, NULL, 's' },
25 { "early-exit", no_argument, &do_exit, 1 },
26 { NULL, 0, NULL, 0 }
29 const char *flag2name[] =
31 [FTW_F] = "FTW_F",
32 [FTW_D] = "FTW_D",
33 [FTW_DNR] = "FTW_DNR",
34 [FTW_NS] = "FTW_NS",
35 [FTW_SL] = "FTW_SL",
36 [FTW_DP] = "FTW_DP",
37 [FTW_SLN] = "FTW_SLN"
41 static int
42 cb (const char *name, const struct stat *st, int flag, struct FTW *f)
44 if (do_exit && strcmp (name + f->base, "file@2"))
45 return FTW_CONTINUE;
47 printf ("base = \"%.*s\", file = \"%s\", flag = %s",
48 f->base, name, name + f->base, flag2name[flag]);
49 if (do_chdir)
51 char *cwd = getcwd (NULL, 0);
52 printf (", cwd = %s", cwd);
53 free (cwd);
55 printf (", level = %d\n", f->level);
57 if (skip_siblings && strcmp (name + f->base, skip_siblings) == 0)
58 return FTW_SKIP_SIBLINGS;
60 if (skip_subtree && strcmp (name + f->base, skip_subtree) == 0)
61 return FTW_SKIP_SUBTREE;
63 return do_exit ? 26 : FTW_CONTINUE;
66 int
67 main (int argc, char *argv[])
69 int opt;
70 int r;
71 int flag = 0;
72 mtrace ();
74 while ((opt = getopt_long_only (argc, argv, "", options, NULL)) != -1)
76 if (opt == 't')
77 skip_subtree = optarg;
78 else if (opt == 's')
79 skip_siblings = optarg;
82 if (do_chdir)
83 flag |= FTW_CHDIR;
84 if (do_depth)
85 flag |= FTW_DEPTH;
86 if (do_phys)
87 flag |= FTW_PHYS;
88 if (skip_subtree || skip_siblings)
90 flag |= FTW_ACTIONRETVAL;
91 if (do_exit)
93 printf ("--early-exit cannot be used together with --skip-{siblings,subtree}");
94 exit (1);
98 char *cw1 = getcwd (NULL, 0);
100 r = nftw (optind < argc ? argv[optind] : ".", cb, do_exit ? 1 : 3, flag);
101 if (r < 0)
102 perror ("nftw");
104 char *cw2 = getcwd (NULL, 0);
106 if (strcmp (cw1, cw2) != 0)
108 printf ("current working directory before and after nftw call differ:\n"
109 "before: %s\n"
110 "after: %s\n", cw1, cw2);
111 exit (1);
114 if (do_exit)
116 puts (r == 26 ? "succeeded" : "failed");
117 return r == 26 ? 0 : 1;
119 return r;