blob: 9b29dbf1cacc1d67ecc3ca2d89159326922a70e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2021 Christian Brauner. All Rights Reserved.
#
# FS QA Test 633
#
# Test that idmapped mounts behave correctly.
#
. ./common/preamble
_begin_fstest auto quick atime attr cap idmapped io_uring mount perms rw unlink
# Import common functions.
. ./common/filter
# real QA test starts here
_supported_fs generic
_require_test
echo "Silence is golden"
$here/src/vfs/vfstest --test-core --device "$TEST_DEV" \
--mount "$TEST_DIR" --fstype "$FSTYP"
status=$?
exit
|