diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-07-10 16:14:45 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-07-10 16:14:45 +0200 |
commit | fd70af45528d59a00eb3190ef6706cb299488fcd (patch) | |
tree | 9782185e343e716c4af641cc16ece3ffd5c38ebf /io/Makefile | |
parent | b444e8f7cc40265c9a20ce5de5f3f6795b7f5028 (diff) | |
download | glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.zip glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.tar.gz glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.tar.bz2 |
Add the statx function
Diffstat (limited to 'io/Makefile')
-rw-r--r-- | io/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/io/Makefile b/io/Makefile index 4a0d8fe..f5b1b61 100644 --- a/io/Makefile +++ b/io/Makefile @@ -31,7 +31,7 @@ routines := \ utime \ mkfifo mkfifoat \ stat fstat lstat stat64 fstat64 lstat64 fstatat fstatat64 \ - xstat fxstat lxstat xstat64 fxstat64 lxstat64 \ + xstat fxstat lxstat xstat64 fxstat64 lxstat64 statx \ mknod mknodat xmknod xmknodat \ fxstatat fxstatat64 \ statfs fstatfs statfs64 fstatfs64 \ @@ -78,6 +78,9 @@ tests := test-utime test-stat test-stat2 test-lfs tst-getcwd \ tests-static += tst-copy_file_range-compat tests-internal += tst-copy_file_range-compat +# Likewise for statx, but we do not need static linking here. +tests-internal += tst-statx + ifeq ($(run-built-tests),yes) tests-special += $(objpfx)ftwtest.out endif |