summaryrefslogtreecommitdiff
path: root/tests/cp/cp-mv-enotsup-xattr
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-08-30 14:13:12 +0200
committerJim Meyering <meyering@redhat.com>2012-08-30 18:55:59 +0200
commit9eb4c31eb78c28dd9f72d1cbb940270311be343c (patch)
treeea3078bc1b002a9f948ed41445ca32318002a1d3 /tests/cp/cp-mv-enotsup-xattr
parent00f5ba15dd91a3d9780fe1fbd06a4df436ae6714 (diff)
downloadcoreutils-9eb4c31eb78c28dd9f72d1cbb940270311be343c.tar.xz
tests: add .sh and .pl suffixes to shell and perl tests, respectively
Not only this shrinks the size of the generated Makefile (from > 6300 lines to ~3000), but will allow further simplifications in future changes. * tests/Makefile.am (TEST_EXTENSIONS): Add '.sh' and '.pl'. (PL_LOG_COMPILER, SH_LOG_COMPILER): New, still defined simply to $(LOG_COMPILER) for the time being. (TESTS, root_tests): Adjust as described. * All tests: Rename as described.
Diffstat (limited to 'tests/cp/cp-mv-enotsup-xattr')
-rwxr-xr-xtests/cp/cp-mv-enotsup-xattr109
1 files changed, 0 insertions, 109 deletions
diff --git a/tests/cp/cp-mv-enotsup-xattr b/tests/cp/cp-mv-enotsup-xattr
deleted file mode 100755
index 66e54cf11..000000000
--- a/tests/cp/cp-mv-enotsup-xattr
+++ /dev/null
@@ -1,109 +0,0 @@
-#!/bin/sh
-# Ensure that mv, cp -a and cp --preserve=xattr(all) options do work
-# as expected on file system without their support and do show correct
-# diagnostics when required
-
-# Copyright (C) 2009-2012 Free Software Foundation, Inc.
-
-# 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, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will 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, see <http://www.gnu.org/licenses/>.
-
-. "${srcdir=.}/init.sh"; path_prepend_ ../src
-print_ver_ cp mv
-
-require_root_
-
-cwd=$(pwd)
-cleanup_() { cd /; umount "$cwd/noxattr"; umount "$cwd/xattr"; }
-
-skip=0
-
-# Mount an ext2 loopback file system at $WHERE with $OPTS
-make_fs() {
- where="$1"
- opts="$2"
-
- fs="$where.bin"
-
- dd if=/dev/zero of="$fs" bs=8192 count=200 > /dev/null 2>&1 \
- || skip=1
- mkdir "$where" || skip=1
- mkfs -t ext2 -F "$fs" ||
- skip_ "failed to create ext2 file system"
- mount -oloop,$opts "$fs" "$where" || skip=1
- echo test > "$where"/f || skip=1
- test -s "$where"/f || skip=1
-
- test $skip = 1 &&
- skip_ "insufficient mount/ext2 support"
-}
-
-make_fs noxattr nouser_xattr
-make_fs xattr user_xattr
-
-# testing xattr name-value pair
-xattr_name="user.foo"
-xattr_value="bar"
-xattr_pair="$xattr_name=\"$xattr_value\""
-
-echo test > xattr/a || framework_failure_
-getfattr -d xattr/a >out_a || skip_ "failed to get xattr of file"
-grep -F "$xattr_pair" out_a >/dev/null && framework_failure_
-setfattr -n "$xattr_name" -v "$xattr_value" xattr/a >out_a \
- || skip_ "failed to set xattr of file"
-getfattr -d xattr/a >out_a || skip_ "failed to get xattr of file"
-grep -F "$xattr_pair" out_a >/dev/null \
- || skip_ "failed to set xattr of file"
-
-
-# This should pass without diagnostics
-cp -a xattr/a noxattr/ 2>err || fail=1
-test -s noxattr/a || fail=1 # destination file must not be empty
-test -s err && fail=1 # there must be no stderr output
-
-rm -f err noxattr/a
-
-# This should pass without diagnostics (new file)
-cp --preserve=all xattr/a noxattr/ 2>err || fail=1
-test -s noxattr/a || fail=1 # destination file must not be empty
-test -s err && fail=1 # there must be no stderr output
-
-# This should pass without diagnostics (existing file)
-cp --preserve=all xattr/a noxattr/ 2>err || fail=1
-test -s noxattr/a || fail=1 # destination file must not be empty
-test -s err && fail=1 # there must be no stderr output
-
-rm -f err noxattr/a
-
-# This should fail with coresponding diagnostics
-cp -a --preserve=xattr xattr/a noxattr/ 2>err && fail=1
-if grep '^#define USE_XATTR 1' $CONFIG_HEADER > /dev/null; then
-cat <<\EOF > exp
-cp: setting attributes for 'noxattr/a': Operation not supported
-EOF
-else
-cat <<\EOF > exp
-cp: cannot preserve extended attributes, cp is built without xattr support
-EOF
-fi
-
-compare exp err || fail=1
-
-rm -f err noxattr/a
-
-# This should pass without diagnostics
-mv xattr/a noxattr/ 2>err || fail=1
-test -s noxattr/a || fail=1 # destination file must not be empty
-test -s err && fail=1 # there must be no stderr output
-
-Exit $fail