xfstests: make install support common/ and tests/ dirs
[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
43 dir=$TEST_DIR/test-mv
44
45 _cleanup()
46 {
47         rm -rf $dir
48 }
49
50 # According to the rename(2) manpage you can get either EEXIST or ENOTEMPTY as an
51 # error for trying to rename a non-empty directory, so just catch the error for
52 # ENOTMEMPTY and replace it with the EEXIST output so that either result passes
53 _filter_directory_not_empty()
54 {
55         sed -e "s,Directory not empty,File exists,g"
56 }
57  
58 trap "_cleanup ; exit \$status" 0 1 2 3 15
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