fstests: move test group info to test files
[xfstests-dev.git] / tests / xfs / 025
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. 025
6 #
7 # Test dump/restore using -m option (min strategy) 
8 #
9 . ./common/preamble
10 _begin_fstest dump ioctl tape
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 _require_tape $TAPE_DEV
29 _create_dumpdir_fill
30 _erase_hard
31 _do_dump_min
32 _do_restore_min
33 _diff_compare
34
35 # success, all done
36 exit