Added changed xfs test device to cxfsaltix2 config.
[xfstests-dev.git] / 063
1 #! /bin/sh
2 # FS QA Test No. 063
3 #
4 # xfsdump/xfsrestore with EAs
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=tes@sgi.com
12
13 seq=`basename $0`
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
20
21 # get standard environment, filters and checks
22 . ./common.rc
23 . ./common.filter
24 . ./common.dump
25
26 # real QA test starts here
27 _supported_fs xfs
28 _supported_os Linux
29
30 # create files with EAs
31 _create_dumpdir_fill_ea
32
33 _do_dump_file
34 _do_restore_file
35
36 # need to compare EAs
37 # so need to get them back
38 _diff_compare_eas
39
40 # success, all done
41 status=0
42 exit