blob: 3c216c5d5843596638cb1d118557964b5a6f2b81 (
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) 2008 Eric Sandeen. All Rights Reserved.
#
# FS QA Test No. 198
#
# Test that aio+dio into holes does completion at the proper offsets
# See also https://bugzilla.redhat.com/show_bug.cgi?id=217098
#
. ./common/preamble
_begin_fstest auto aio quick
# Import common functions.
. ./common/filter
_supported_fs generic
_require_aiodio aiodio_sparse2
_require_test
echo "Silence is golden."
# real QA test starts here
rm -f "$TEST_DIR/aiodio_sparse*"
$AIO_TEST "$TEST_DIR/aiodio_sparse"
status=$?
exit
|