2000-01-18 Ulrich Drepper <drepper@cygnus.com>
+ * posix/TESTS: Fix expected result for test cases with * with no
+ leading expression.
+
* sysdeps/unix/sysv/linux/fstatvfs.c: Move actual code in...
* sysdeps/unix/sysv/linux/internal_statvfs.c: ...here. New file.
* sysdeps/unix/sysv/linux/statvfs.c: Don't use fstatvfs since the
0:ab|cd:abcd
0:()ef:def
0:()*:-
-1:*a:-
-0:^*:-
-0:$*:-
-1:(*)b:-
+2:*a:-
+2:^*:-
+2:$*:-
+2:(*)b:-
1:$b:b
2:a\:-
0:a\(b:a(b
{0, "ab|cd", "abcd"},
{0, "()ef", "def"},
{0, "()*", "-"},
- {1, "*a", "-"},
- {0, "^*", "-"},
- {0, "$*", "-"},
- {1, "(*)b", "-"},
+ {2, "*a", "-"},
+ {2, "^*", "-"},
+ {2, "$*", "-"},
+ {2, "(*)b", "-"},
{1, "$b", "b"},
{2, "a\\", "-"},
{0, "a\\(b", "a(b"},
if (__fstatfs (fd, &fsbuf) < 0)
return -1;
+#define STAT(st) fstat (fd, st)
#include "internal_statvfs.c"
-
+
/* We signal success if the statfs call succeeded. */
return 0;
}
file. The way we can test for matching filesystem is using the
device number. */
buf->f_flag = 0;
- if (fstat (fd, &st) >= 0)
+ if (STAT (&st) >= 0)
{
int save_errno = errno;
struct mntent mntbuf;
Boston, MA 02111-1307, USA. */
#include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
+#include <mntent.h>
+#include <paths.h>
+#include <string.h>
+#include <sys/mount.h>
+#include <sys/stat.h>
+#include <sys/statfs.h>
#include <sys/statvfs.h>
struct stat st;
/* Get as much information as possible from the system. */
- if (__statfs (fd, &fsbuf) < 0)
+ if (__statfs (file, &fsbuf) < 0)
return -1;
+#define STAT(st) stat (file, st)
#include "internal_statvfs.c"
-
+
/* We signal success if the statfs call succeeded. */
return 0;
}