aboutsummaryrefslogtreecommitdiff
path: root/dirent/tst-seekdir.c
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
committerZack Weinberg <zackw@panix.com>2017-06-08 15:39:03 -0400
commit5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch)
tree4470480d904b65cf14ca524f96f79eca818c3eaf /dirent/tst-seekdir.c
parent199fc19d3aaaf57944ef036e15904febe877fc93 (diff)
downloadglibc-zack/build-layout-experiment.tar
glibc-zack/build-layout-experiment.tar.gz
glibc-zack/build-layout-experiment.tar.bz2
glibc-zack/build-layout-experiment.zip
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage directory, REORG.TODO, except for files that will certainly still exist in their current form at top level when we're done (COPYING, COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which are moved to the new directory OldChangeLogs, instead), and the generated file INSTALL (which is just deleted; in the new order, there will be no generated files checked into version control).
Diffstat (limited to 'dirent/tst-seekdir.c')
-rw-r--r--dirent/tst-seekdir.c81
1 files changed, 0 insertions, 81 deletions
diff --git a/dirent/tst-seekdir.c b/dirent/tst-seekdir.c
deleted file mode 100644
index dcdd699b09..0000000000
--- a/dirent/tst-seekdir.c
+++ /dev/null
@@ -1,81 +0,0 @@
-#include <stdio.h>
-#include <dirent.h>
-#include <stdlib.h>
-
-static int
-do_test (void)
-{
- DIR * dirp;
- long int save3 = 0;
- long int cur;
- int i = 0;
- int result = 0;
- struct dirent *dp;
- long int save0;
- long int rewind;
-
- dirp = opendir (".");
- if (dirp == NULL)
- {
- printf ("opendir failed: %m\n");
- return 1;
- }
-
- save0 = telldir (dirp);
- if (save0 == -1)
- {
- printf ("telldir failed: %m\n");
- result = 1;
- }
-
- for (dp = readdir (dirp); dp != NULL; dp = readdir (dirp))
- {
- /* save position 3 (after fourth entry) */
- if (i++ == 3)
- save3 = telldir (dirp);
-
- printf ("%s\n", dp->d_name);
-
- /* stop at 400 (just to make sure dirp->__offset and dirp->__size are
- scrambled */
- if (i == 400)
- break;
- }
-
- printf ("going back past 4-th entry...\n");
-
- /* go back to saved entry */
- seekdir (dirp, save3);
-
- /* Check whether telldir equals to save3 now. */
- cur = telldir (dirp);
- if (cur != save3)
- {
- printf ("seekdir (d, %ld); telldir (d) == %ld\n", save3, cur);
- result = 1;
- }
-
- /* print remaining files (3-last) */
- for (dp = readdir (dirp); dp != NULL; dp = readdir (dirp))
- printf ("%s\n", dp->d_name);
-
- /* Check rewinddir */
- rewinddir (dirp);
- rewind = telldir (dirp);
- if (rewind == -1)
- {
- printf ("telldir failed: %m\n");
- result = 1;
- }
- else if (save0 != rewind)
- {
- printf ("rewinddir didn't reset directory stream\n");
- result = 1;
- }
-
- closedir (dirp);
- return result;
-}
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"