blob: 1bfc6dbcf8a6423be496466beb1c034c0a05a075 (
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
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2017 Intel Corporation. All Rights Reserved.
#
# FS QA Test 437
#
# This is a regression test for kernel patches:
# mm: avoid spurious 'bad pmd' warning messages
# dax: Fix race between colliding PMD & PTE entries
# 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_cow_race"
# real QA test starts here
$here/src/t_mmap_cow_race $TEST_DIR/testfile
# success, all done
echo "Silence is golden"
status=0
exit
|