summaryrefslogtreecommitdiff
path: root/tests/overlay/024
blob: d9a3e409834edcf5ca44a86c49db76b1de93ea9d (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2017 Red Hat Inc.  All Rights Reserved.
#
# FS QA Test 024
#
# "work" directory under workdir should be cleaned up
# well on overlayfs startup, or overlayfs will be mounted
# read-only.
# Kernel commit below fixes it.
# eea2fb4851e9 ovl: proper cleanup of workdir
#
# This reproducer was originally written by
#     Miklos Szeredi <mszeredi@redhat.com>
#
. ./common/preamble
_begin_fstest auto quick mount

# Import common functions.
. ./common/filter

# real QA test starts here

# Modify as appropriate.
_supported_fs overlay
_require_scratch

# Remove all files from previous tests
_scratch_mkfs

# making workdir
wkdir=$OVL_BASE_SCRATCH_MNT/$OVL_WORK
mkdir -p $wkdir/work/foo

_scratch_mount

# try writing to mountpoint
touch $SCRATCH_MNT/bar

# checking work dir is clean
if [ -e $wkdir/work/foo ] ; then
	echo "work dir is not clean"
else
	echo "Silence is golden"
fi
# success, all done
status=0
exit