xfstests: include test subdirectory support
[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
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
34 # get standard environment, filters and checks
35 . ./common.rc
36 . ./common.filter
37
38 # real QA test starts here
39 _supported_fs generic
40 _supported_os Linux
41
42 dir=$TEST_DIR/test-mv
43
44 _cleanup()
45 {
46         rm -rf $dir
47 }
48
49 # According to the rename(2) manpage you can get either EEXIST or ENOTEMPTY as an
50 # error for trying to rename a non-empty directory, so just catch the error for
51 # ENOTMEMPTY and replace it with the EEXIST output so that either result passes
52 _filter_directory_not_empty()
53 {
54         sed -e "s,Directory not empty,File exists,g"
55 }
56  
57 trap "_cleanup ; exit \$status" 0 1 2 3 15
58
59
60 mkdir $dir
61
62 mkdir $dir/aa
63 mkdir $dir/ab
64 touch $dir/aa/1
65 mkdir $dir/ab/aa
66 touch $dir/ab/aa/2
67
68 mv $dir/ab/aa/ $dir 2>&1 | _filter_test_dir | _filter_directory_not_empty
69
70 status=0
71 exit $status