1*8a272653SPeter Holm /*-
2*8a272653SPeter Holm * Copyright (c) 2008 Peter Holm <pho@FreeBSD.org>
3*8a272653SPeter Holm * All rights reserved.
4*8a272653SPeter Holm *
5*8a272653SPeter Holm * Redistribution and use in source and binary forms, with or without
6*8a272653SPeter Holm * modification, are permitted provided that the following conditions
7*8a272653SPeter Holm * are met:
8*8a272653SPeter Holm * 1. Redistributions of source code must retain the above copyright
9*8a272653SPeter Holm * notice, this list of conditions and the following disclaimer.
10*8a272653SPeter Holm * 2. Redistributions in binary form must reproduce the above copyright
11*8a272653SPeter Holm * notice, this list of conditions and the following disclaimer in the
12*8a272653SPeter Holm * documentation and/or other materials provided with the distribution.
13*8a272653SPeter Holm *
14*8a272653SPeter Holm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15*8a272653SPeter Holm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*8a272653SPeter Holm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*8a272653SPeter Holm * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18*8a272653SPeter Holm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*8a272653SPeter Holm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*8a272653SPeter Holm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*8a272653SPeter Holm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*8a272653SPeter Holm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*8a272653SPeter Holm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*8a272653SPeter Holm * SUCH DAMAGE.
25*8a272653SPeter Holm *
26*8a272653SPeter Holm */
27*8a272653SPeter Holm
28*8a272653SPeter Holm /* Directory scan */
29*8a272653SPeter Holm
30*8a272653SPeter Holm #include <sys/param.h>
31*8a272653SPeter Holm #include <err.h>
32*8a272653SPeter Holm #include <errno.h>
33*8a272653SPeter Holm #include <fts.h>
34*8a272653SPeter Holm #include <libutil.h>
35*8a272653SPeter Holm #include <stdint.h>
36*8a272653SPeter Holm #include <stdio.h>
37*8a272653SPeter Holm #include <stdlib.h>
38*8a272653SPeter Holm #include <string.h>
39*8a272653SPeter Holm #include <unistd.h>
40*8a272653SPeter Holm
41*8a272653SPeter Holm #include "stress.h"
42*8a272653SPeter Holm
43*8a272653SPeter Holm int
setup(int nb __unused)44*8a272653SPeter Holm setup(int nb __unused)
45*8a272653SPeter Holm {
46*8a272653SPeter Holm return (0);
47*8a272653SPeter Holm }
48*8a272653SPeter Holm
49*8a272653SPeter Holm void
cleanup(void)50*8a272653SPeter Holm cleanup(void)
51*8a272653SPeter Holm {
52*8a272653SPeter Holm }
53*8a272653SPeter Holm
54*8a272653SPeter Holm int
test(void)55*8a272653SPeter Holm test(void)
56*8a272653SPeter Holm {
57*8a272653SPeter Holm
58*8a272653SPeter Holm FTS *fts;
59*8a272653SPeter Holm FTSENT *p;
60*8a272653SPeter Holm int ftsoptions;
61*8a272653SPeter Holm char *args[2] = {NULL, NULL};
62*8a272653SPeter Holm
63*8a272653SPeter Holm ftsoptions = FTS_LOGICAL;
64*8a272653SPeter Holm args[0] = strdup(".");
65*8a272653SPeter Holm
66*8a272653SPeter Holm if ((fts = fts_open(args, ftsoptions, NULL)) == NULL)
67*8a272653SPeter Holm err(1, "fts_open");
68*8a272653SPeter Holm
69*8a272653SPeter Holm while ((p = fts_read(fts)) != NULL && done_testing == 0) {
70*8a272653SPeter Holm if (op->verbose > 2)
71*8a272653SPeter Holm (void) printf("%s\n", p->fts_path);
72*8a272653SPeter Holm switch (p->fts_info) {
73*8a272653SPeter Holm case FTS_F: /* Ignore. */
74*8a272653SPeter Holm break;
75*8a272653SPeter Holm case FTS_D: /* Ignore. */
76*8a272653SPeter Holm break;
77*8a272653SPeter Holm case FTS_DP:
78*8a272653SPeter Holm break;
79*8a272653SPeter Holm case FTS_DC: /* Ignore. */
80*8a272653SPeter Holm break;
81*8a272653SPeter Holm case FTS_SL: /* Ignore. */
82*8a272653SPeter Holm break;
83*8a272653SPeter Holm case FTS_SLNONE: /* Ignore. */
84*8a272653SPeter Holm break;
85*8a272653SPeter Holm case FTS_DNR: /* Warn, continue. */
86*8a272653SPeter Holm case FTS_ERR:
87*8a272653SPeter Holm case FTS_NS:
88*8a272653SPeter Holm case FTS_DEFAULT:
89*8a272653SPeter Holm if (op->verbose > 1)
90*8a272653SPeter Holm warnx("%s: %s", p->fts_path, strerror(p->fts_errno));
91*8a272653SPeter Holm break;
92*8a272653SPeter Holm default:
93*8a272653SPeter Holm printf("%s: default, %d\n", getprogname(), p->fts_info);
94*8a272653SPeter Holm break;
95*8a272653SPeter Holm }
96*8a272653SPeter Holm }
97*8a272653SPeter Holm
98*8a272653SPeter Holm if (fts_close(fts) == -1)
99*8a272653SPeter Holm err(1, "fts_close()");
100*8a272653SPeter Holm
101*8a272653SPeter Holm return (0);
102*8a272653SPeter Holm }
103