fstests: move test group info to test files
[xfstests-dev.git] / tests / generic / 463
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Christoph Hellwig.  All Rights Reserved.
4 #
5 # FS QA Test 463
6 #
7 # Test racy COW AIO write completions.
8 #
9 . ./common/preamble
10 _begin_fstest auto quick clone
11
12 # Override the default cleanup function.
13 _cleanup()
14 {
15         cd /
16         rm -f $tmp.*
17         rm -f $TEST_DIR/file $TEST_DIR/clone
18 }
19
20 # Import common functions.
21 . ./common/filter
22 . ./common/reflink
23
24 _supported_fs generic
25
26 _require_test
27 _require_test_reflink
28 _require_aiodio aio-dio-cow-race
29
30 $AIO_TEST $TEST_DIR/file $TEST_DIR/clone
31
32 echo "Silence is golden"
33 status=0
34 exit