blob: e98e3f00c7c3eff18b5a9d35bda0704f95abc375 [file] [log] [blame]
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2023 SUSE Linux Products GmbH. All Rights Reserved.
#
# FS QA Test 471
#
# Test that if names are added to a directory after an opendir(3) call and
# before a rewinddir(3) call, future readdir(3) calls will return the names.
# This is mandated by POSIX:
#
# https://pubs.opengroup.org/onlinepubs/007904875/functions/rewinddir.html
#
. ./common/preamble
_begin_fstest auto quick dir
_cleanup()
{
cd /
rm -fr $tmp.*
rm -fr $target_dir
}
_require_test
_require_test_program rewinddir-test
[ $FSTYP == "btrfs" ] && _fixed_by_kernel_commit e60aa5da14d0 \
"btrfs: refresh dir last index during a rewinddir(3) call"
target_dir="$TEST_DIR/test-$seq"
rm -fr $target_dir
mkdir $target_dir
$here/src/rewinddir-test $target_dir
# success, all done
echo "Silence is golden"
status=0
exit