280: test freeze deadlock w/ quotas
[xfstests-dev.git] / 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 # creator
27 owner=hch@lst.de
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
39
40 # real QA test starts here
41 _supported_fs generic
42 _supported_os Linux
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
62 mkdir $dir
63
64 mkdir $dir/aa
65 mkdir $dir/ab
66 touch $dir/aa/1
67 mkdir $dir/ab/aa
68 touch $dir/ab/aa/2
69
70 mv $dir/ab/aa/ $dir 2>&1 | _filter_test_dir | _filter_directory_not_empty
71
72 status=0
73 exit $status