xfs/007: fix regressions on V4 filesystems
[xfstests-dev.git] / tests / xfs / 026
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 026
6 #
7 # Test xfsdump/xfsrestore to a dump file (as opposed to a tape)
8 #
9 . ./common/preamble
10 _begin_fstest dump ioctl auto quick
11
12 status=0        # success is the default!
13
14 # Override the default cleanup function.
15 _cleanup()
16 {
17         _cleanup_dump
18         cd /
19         rm -f $tmp.*
20 }
21
22 # Import common functions.
23 . ./common/dump
24
25 # real QA test starts here
26 _supported_fs xfs
27
28 _create_dumpdir_fill
29 _do_dump_file
30 _do_restore_file
31 _diff_compare
32
33 # success, all done
34 exit