blob: 5c43dced25497d7b7874e42af591001a040c148c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
#
# FS QA Test No. 048
#
# test return codes from xfsctl on bad userspace address
#
. ./common/preamble
_begin_fstest other auto quick
# Import common functions.
. ./common/filter
# real QA test starts here
_supported_fs xfs
_require_test
$here/src/fault $TEST_DIR || exit
# success, all done
status=0
exit
|