dmapi: fix build failure if libdm is provided via -ldm
[xfstests-dev.git] / 066
1 #! /bin/bash
2 # FS QA Test No. 066
3 #
4 # Test dumping of large files
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=tes@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.dump
39
40 _cleanup()
41 {
42     cd /
43     rm -f $tmp.*
44     _cleanup_testdir
45 }
46
47 # real QA test starts here
48 _supported_fs xfs
49 _supported_os IRIX Linux
50
51 _setup_testdir
52
53 _my_stat_filter()
54 {
55     grep "[sS]ize" | sed "s/.*[sS]ize[: ]*\([[:digit:]]*\).*/\1 largefile/g"
56 }
57
58 rm -f $testdir/testfile
59 if src/feature -t $testdir/testfile; then
60         :
61 else
62         _notrun "Installed libc doesn't correctly handle setrlimit/ftruncate64"
63 fi
64
65 _create_dumpdir_largefile
66 echo "ls dumpdir/largefile"
67 stat $dump_dir | _my_stat_filter
68 _do_dump_file
69 _do_restore_file
70 echo "ls restoredir/largefile"
71 stat $restore_dir/$dump_sdir | _my_stat_filter
72
73 # success, all done
74 status=0
75 exit