faccessat.test: robustify against libcs invoking faccessat syscall on their own

* tests/faccessat.c (TMP_FILE): Rename to sample, change its value
to "faccessat.sample".
* tests/faccessat.test: Rewrite using openat.test.
This commit is contained in:
Дмитрий Левин 2016-03-28 00:16:17 +00:00
parent 347a5d45ec
commit 90406df134
2 changed files with 5 additions and 11 deletions

View File

@ -7,15 +7,15 @@
# include <stdio.h>
# include <unistd.h>
# define TMP_FILE "faccessat_tmpfile"
int
main(void)
{
static const char sample[] = "faccessat.sample";
const long int fd = (long int) 0xdeadbeefffffffff;
int rc = syscall(__NR_faccessat, fd, TMP_FILE, F_OK);
int rc = syscall(__NR_faccessat, fd, sample, F_OK);
printf("faccessat(%d, \"%s\", F_OK) = %d %s (%m)\n",
(int) fd, TMP_FILE, rc,
(int) fd, sample, rc,
errno == ENOSYS ? "ENOSYS" : "EBADF");
puts("+++ exited with 0 +++");

View File

@ -2,10 +2,4 @@
# Check faccessat syscall decoding.
. "${srcdir=.}/init.sh"
run_prog > /dev/null
OUT="$LOG.out"
run_strace -efaccessat $args > "$OUT"
match_diff "$LOG" "$OUT"
rm -f "$OUT"
. "${srcdir=.}/openat.test"