003 File Manager
Current Path:
/usr/src/tests/sys/cddl/zfs/tests/mv_files
usr
/
src
/
tests
/
sys
/
cddl
/
zfs
/
tests
/
mv_files
/
📁
..
📄
Makefile
(461 B)
📄
cleanup.ksh
(1.17 KB)
📄
mv_files.cfg
(1.5 KB)
📄
mv_files_001_pos.ksh
(2.24 KB)
📄
mv_files_002_pos.ksh
(2.3 KB)
📄
mv_files_common.kshlib
(4.83 KB)
📄
mv_files_test.sh
(2.5 KB)
📄
setup.ksh
(1.24 KB)
Editing: mv_files_002_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 # # $FreeBSD$ # # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)mv_files_002_pos.ksh 1.2 07/01/09 SMI" # . $STF_SUITE/include/libtest.kshlib . $STF_SUITE/tests/mv_files/mv_files_common.kshlib ############################################################################## # # __stc_assertion_start # # ID: mv_files_002_pos # # DESCRIPTION: # Doing a 'mv' of a large amount of files between two directories across # two zfs filesystems works without errors. # # STRATEGY: # # 1. create a pool and two zfs filesystems # 2. create a directory in each filesystem # 3. create a large number of files in a directory of a filesystem # 4. Move files from the directory to another directory in another # filesystem and back again # 5. validate file number # 6. increase the number of files to $MVNUMFILES + $MVNUMINCR # 7. repeat steps 3,4,5,6 above # 8. verify the data integrity # # TESTABILITY: explicit # # TEST_AUTOMATION_LEVEL: automated # # CODING_STATUS: COMPLETED (2005-07-04) # # __stc_assertion_end # ################################################################################ verify_runnable "global" function cleanup { PIDS="" $RM -f $OLDDIR/* >/dev/null 2>&1 $RM -f $NEWDIR_ACROSS_FS/* >/dev/null 2>&1 } log_assert "Doing a 'mv' of a large amount of files across two zfs filesystems" \ "works without errors." log_onexit cleanup mv_test $OLDDIR $NEWDIR_ACROSS_FS (($? != 0 )) && \ log_fail "'mv' test failed to complete." log_pass
Upload File
Create Folder