blob: 1fb44273449a1c21238e79455b8deda838e4fef8 (
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) 2010 Christoph Hellwig. All Rights Reserved.
#
# FS QA Test No. 221
#
# Check ctime updates when calling futimens without UTIME_OMIT for the
# mtime entry.
#
# Based on a bug report and testcase from Eric Blake <ebb9@byu.net>.
#
. ./common/preamble
_begin_fstest auto metadata quick
# Import common functions.
# real QA test starts here
_supported_fs generic
_require_test
echo "Silence is golden."
(cd $TEST_DIR && $here/src/t_futimens)
status=0
exit $status
|