9cab3c44285ccce7460ee0d605e9b6de14fae67d
[xfstests-dev.git] / tests / generic / 221
1 #! /bin/bash
2 # FS QA Test No. 221
3 #
4 # Check ctime updates when calling futimens without UTIME_OMIT for the
5 # mtime entry.
6 #
7 # Based on a bug report and testcase from Eric Blake <ebb9@byu.net>.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2010 Christoph Hellwig.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #
25 #-----------------------------------------------------------------------
26 #
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34
35 # get standard environment, filters and checks
36 . ./common.rc
37
38 # real QA test starts here
39 _supported_fs generic
40 _supported_os Linux
41
42 echo "Silence is golden."
43
44 (cd $TEST_DIR && $here/src/t_futimens)
45
46 status=0
47 exit $status