diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2021-02-03 11:53:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 09:53:21 +0000 |
commit | 5012a05ac875c1988263faaa77177c27c62c52bb (patch) | |
tree | 0207e1ee07d56e020798b89b30bea75d10559f74 /test/meson.build | |
parent | b9e3ea01dbbbba9518da216dd29c042af871ae31 (diff) | |
download | libfuse-5012a05ac875c1988263faaa77177c27c62c52bb.tar.gz |
Fix returning inode numbers from readdir() in offset==0 mode. (#584)
- Test added for all passthrough examples.
- passthrough.c uses offset==0 mode. The others don't.
- passthrough.c changed to set FUSE_FILL_DIR_PLUS to make the test pass.
- This fixes #583.
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index 5c5c2e6..12d3c41 100644 --- a/test/meson.build +++ b/test/meson.build @@ -10,6 +10,9 @@ endforeach td += executable('test_syscalls', 'test_syscalls.c', include_directories: include_dirs, install: false) +td += executable('readdir_inode', 'readdir_inode.c', + include_directories: include_dirs, + install: false) test_scripts = [ 'conftest.py', 'pytest.ini', 'test_examples.py', 'util.py', 'test_ctests.py' ] |