test/test_syscalls.c: check unlinked testfiles at the end of the test
authorAmir Goldstein <amir73il@gmail.com>
Wed, 9 Jun 2021 16:32:46 +0000 (19:32 +0300)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 14 Jun 2021 08:13:12 +0000 (09:13 +0100)
commit10ecd4fda404f3403e571a7dbfe6bb295d0f208b
tree20a4450ecd0189e1f282cd8dd9450061c691ed21
parent494e15127c67a673779fa2f05c08abe6901f88c5
test/test_syscalls.c: check unlinked testfiles at the end of the test

On some tests on regular files, open an O_PATH fd of the testfile and
record it along side the size and mode and inode.

At the end of all tests, use recorded testfiles info to re-check the size
mode and inode of the unlinked testfiles.

With O_PATH fd, the server does not have to keep the inode alive so FUSE
inode may be stale or bad.  Therefore, ESTALE and EIO are valid results
for fstat() on the old testfile fd's, but returning the wrong size or
mode is an invalid result.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
test/test_syscalls.c