From: Miklos Szeredi Date: Mon, 14 Apr 2014 00:37:32 +0000 (+1000) Subject: generic: check cross renameat2 syscall X-Git-Tag: v2022.05.01~3177 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3c9cd13b789be058dc72926b096002fa0ed241cb;p=xfstests-dev.git generic: check cross renameat2 syscall Check with RENAME_EXCHANGE flag. This flag indicates that the source and destination files are to be exchanged. Signed-off-by: Miklos Szeredi Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/tests/generic/025 b/tests/generic/025 new file mode 100755 index 00000000..251fffe5 --- /dev/null +++ b/tests/generic/025 @@ -0,0 +1,64 @@ +#! /bin/bash +# FS QA Test No. generic/025 +# +# Check renameat2 syscall with RENAME_EXCHANGE flag +# +#----------------------------------------------------------------------- +# Copyright (c) 2014 Miklos Szeredi. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- +# + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + rm -f $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/renameat2 + +_supported_fs generic +_supported_os Linux + +_requires_renameat2 + +rename_dir=$TEST_DIR/$$ +mkdir $rename_dir +touch $rename_dir/foo $rename_dir/bar +if ! src/renameat2 -t -x $rename_dir/foo $rename_dir/bar; then + rm -f $rename_dir/foo $rename_dir/bar; rmdir $rename_dir + _notrun "fs doesn't support RENAME_EXCHANGE" +fi +rm -f $rename_dir/foo $rename_dir/bar + +# real QA test starts here + +_rename_tests $rename_dir -x +rmdir $rename_dir + +# success, all done +status=0 +exit diff --git a/tests/generic/025.out b/tests/generic/025.out new file mode 100644 index 00000000..46e87bbf --- /dev/null +++ b/tests/generic/025.out @@ -0,0 +1,51 @@ +QA output created by 025 +samedir none/none -> No such file or directory +samedir none/regu -> No such file or directory +samedir none/symb -> No such file or directory +samedir none/dire -> No such file or directory +samedir none/tree -> No such file or directory +samedir regu/none -> No such file or directory +samedir regu/regu -> regu/regu. +samedir regu/symb -> symb/regu. +samedir regu/dire -> dire/regu. +samedir regu/tree -> tree/regu. +samedir symb/none -> No such file or directory +samedir symb/regu -> regu/symb. +samedir symb/symb -> symb/symb. +samedir symb/dire -> dire/symb. +samedir symb/tree -> tree/symb. +samedir dire/none -> No such file or directory +samedir dire/regu -> regu/dire. +samedir dire/symb -> symb/dire. +samedir dire/dire -> dire/dire. +samedir dire/tree -> tree/dire. +samedir tree/none -> No such file or directory +samedir tree/regu -> regu/tree. +samedir tree/symb -> symb/tree. +samedir tree/dire -> dire/tree. +samedir tree/tree -> tree/tree. +crossdir none/none -> No such file or directory +crossdir none/regu -> No such file or directory +crossdir none/symb -> No such file or directory +crossdir none/dire -> No such file or directory +crossdir none/tree -> No such file or directory +crossdir regu/none -> No such file or directory +crossdir regu/regu -> regu/regu. +crossdir regu/symb -> symb/regu. +crossdir regu/dire -> dire/regu. +crossdir regu/tree -> tree/regu. +crossdir symb/none -> No such file or directory +crossdir symb/regu -> regu/symb. +crossdir symb/symb -> symb/symb. +crossdir symb/dire -> dire/symb. +crossdir symb/tree -> tree/symb. +crossdir dire/none -> No such file or directory +crossdir dire/regu -> regu/dire. +crossdir dire/symb -> symb/dire. +crossdir dire/dire -> dire/dire. +crossdir dire/tree -> tree/dire. +crossdir tree/none -> No such file or directory +crossdir tree/regu -> regu/tree. +crossdir tree/symb -> symb/tree. +crossdir tree/dire -> dire/tree. +crossdir tree/tree -> tree/tree. diff --git a/tests/generic/group b/tests/generic/group index de9c04aa..60d60663 100644 --- a/tests/generic/group +++ b/tests/generic/group @@ -27,6 +27,7 @@ 022 auto quick prealloc 023 auto quick 024 auto quick +025 auto quick 053 acl repair auto quick 062 attr udf auto quick 068 other auto freeze dangerous stress