blob: 4073afc4a7722ba956cd115e7ad5a193ea402db0 (
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
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2017 Intel Corporation. All Rights Reserved.
#
# FS QA Test 428
#
# This is a regression test for kernel patch:
# dax: fix data corruption due to stale mmap reads
# created by Ross Zwisler <ross.zwisler@linux.intel.com>
#
. ./common/preamble
_begin_fstest auto quick dax
# Import common functions.
. ./common/filter
# Modify as appropriate.
_supported_fs generic
_require_test
_require_test_program "t_mmap_stale_pmd"
# real QA test starts here
$here/src/t_mmap_stale_pmd $TEST_DIR/testfile
# success, all done
echo "Silence is golden"
status=0
exit
|