generic/554: hide permision warning on exfat
[xfstests-dev.git] / tests / generic / 221
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2010 Christoph Hellwig.  All Rights Reserved.
4 #
5 # FS QA Test No. 221
6 #
7 # Check ctime updates when calling futimens without UTIME_OMIT for the
8 # mtime entry.
9 #
10 # Based on a bug report and testcase from Eric Blake <ebb9@byu.net>.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19
20 # get standard environment, filters and checks
21 . ./common/rc
22
23 # real QA test starts here
24 _supported_fs generic
25 _require_test
26
27 echo "Silence is golden."
28
29 (cd $TEST_DIR && $here/src/t_futimens)
30
31 status=0
32 exit $status