003 File Manager
Current Path:
/usr/src/tests/sys/cddl/zfs/tests/xattr
usr
/
src
/
tests
/
sys
/
cddl
/
zfs
/
tests
/
xattr
/
📁
..
📄
Makefile
(839 B)
📄
cleanup.ksh
(1.23 KB)
📄
setup.ksh
(1.72 KB)
📄
xattr.cfg
(1.57 KB)
📄
xattr_001_pos.ksh
(2.18 KB)
📄
xattr_002_neg.ksh
(1.89 KB)
📄
xattr_003_neg.ksh
(2.34 KB)
📄
xattr_004_pos.ksh
(3.21 KB)
📄
xattr_005_pos.ksh
(2.86 KB)
📄
xattr_006_pos.ksh
(2.14 KB)
📄
xattr_007_neg.ksh
(3.55 KB)
📄
xattr_008_pos.ksh
(3.64 KB)
📄
xattr_009_neg.ksh
(2.31 KB)
📄
xattr_010_neg.ksh
(2.36 KB)
📄
xattr_011_pos.ksh
(6.93 KB)
📄
xattr_012_pos.ksh
(3.18 KB)
📄
xattr_013_pos.ksh
(3.25 KB)
📄
xattr_common.kshlib
(3.45 KB)
📄
xattr_test.sh
(9.8 KB)
Editing: xattr_004_pos.ksh
#!/usr/local/bin/ksh93 -p # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)xattr_004_pos.ksh 1.1 07/02/06 SMI" # # $FreeBSD$ . $STF_SUITE/include/libtest.kshlib . $STF_SUITE/tests/xattr/xattr_common.kshlib ################################################################################ # # __stc_assertion_start # # ID: xattr_004_pos # # DESCRIPTION: # # Creating files on ufs and tmpfs, and copying those files to ZFS with # appropriate cp flags, the xattrs will still be readable. # # STRATEGY: # 1. Create files in ufs and tmpfs with xattrs # 2. Copy those files to zfs # 3. Ensure the xattrs can be read and written # 4. Do the same in reverse. # # TESTABILITY: explicit # # TEST_AUTOMATION_LEVEL: automated # # CODING_STATUS: COMPLETED (2006-12-05) # # __stc_assertion_end # ################################################################################ # we need to be able to create zvols to hold our test # ufs filesystem. verify_runnable "global" # Make sure we clean up properly function cleanup { if [ $( ismounted $TMPDIR/ufs.${TESTCASE_ID} ufs ) ] then log_must $UMOUNT $TMPDIR/ufs.${TESTCASE_ID} log_must $RM -rf $TMPDIR/ufs.${TESTCASE_ID} fi } log_assert "Files from ufs,tmpfs with xattrs copied to zfs retain xattr info." log_onexit cleanup test_requires RUNAT # Create a UFS file system that we can work in log_must $ZFS create -V128m $TESTPOOL/$TESTFS/zvol log_must eval "$ECHO y | $NEWFS /dev/zvol/$TESTPOOL/$TESTFS/zvol > /dev/null 2>&1" log_must $MKDIR $TMPDIR/ufs.${TESTCASE_ID} log_must $MOUNT /dev/zvol/$TESTPOOL/$TESTFS/zvol $TMPDIR/ufs.${TESTCASE_ID} # Create files in ufs and tmpfs, and set some xattrs on them. log_must $TOUCH $TMPDIR/ufs.${TESTCASE_ID}/ufs-file.${TESTCASE_ID} log_must $TOUCH $TMPDIR/tmpfs-file.${TESTCASE_ID} log_must $RUNAT $TMPDIR/ufs.${TESTCASE_ID}/ufs-file.${TESTCASE_ID} $CP /etc/passwd . log_must $RUNAT $TMPDIR/tmpfs-file.${TESTCASE_ID} $CP /etc/group . # copy those files to ZFS log_must $CP -@ $TMPDIR/ufs.${TESTCASE_ID}/ufs-file.${TESTCASE_ID} $TESTDIR log_must $CP -@ $TMPDIR/tmpfs-file.${TESTCASE_ID} $TESTDIR # ensure the xattr information has been copied correctly log_must $RUNAT $TESTDIR/ufs-file.${TESTCASE_ID} $DIFF passwd /etc/passwd log_must $RUNAT $TESTDIR/tmpfs-file.${TESTCASE_ID} $DIFF group /etc/group log_must $UMOUNT $TMPDIR/ufs.${TESTCASE_ID} log_pass "Files from ufs,tmpfs with xattrs copied to zfs retain xattr info."
Upload File
Create Folder