generic: shutdown fs after log recovery
[xfstests-dev.git] / tests / generic / 245
1 #! /bin/bash
2 # FS QA Test No. 245
3 #
4 # Check that directory renames onto non-empty targets fail
5 #
6 # Based on a bug report and testcase from  Vlado Plaga <rechner@vlado-do.de>
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2010 Christoph Hellwig.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34
35 # get standard environment, filters and checks
36 . ./common/rc
37 . ./common/filter
38
39 # real QA test starts here
40 _supported_fs generic
41 _supported_os Linux
42 _require_test
43
44 dir=$TEST_DIR/test-mv
45
46 _cleanup()
47 {
48         rm -rf $dir
49 }
50
51 # According to the rename(2) manpage you can get either EEXIST or ENOTEMPTY as an
52 # error for trying to rename a non-empty directory, so just catch the error for
53 # ENOTMEMPTY and replace it with the EEXIST output so that either result passes
54 _filter_directory_not_empty()
55 {
56         sed -e "s,Directory not empty,File exists,g"
57 }
58  
59 trap "_cleanup ; exit \$status" 0 1 2 3 15
60
61 mkdir $dir
62
63 mkdir $dir/aa
64 mkdir $dir/ab
65 touch $dir/aa/1
66 mkdir $dir/ab/aa
67 touch $dir/ab/aa/2
68
69 mv $dir/ab/aa/ $dir 2>&1 | _filter_test_dir | _filter_directory_not_empty
70
71 status=0
72 exit $status