#!/bin/bash # Copyright (C) 2008-2010 Red Hat, Inc. All rights reserved. # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions # of the GNU General Public License v.2. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA test_description='Exercise fsadm filesystem resize' exit 200 . lib/test aux prepare_vg 1 100 # set to "skip" to avoid testing given fs and test warning result # i.e. check_reiserfs=skip check_ext3= check_xfs= check_reiserfs= which mkfs.ext3 || check_ext3=${check_ext3:=mkfs.ext3} which fsck.ext3 || check_ext3=${check_ext3:=fsck.ext3} which mkfs.xfs || check_xfs=${check_xfs:=mkfs.xfs} which xfs_check || check_xfs=${check_xfs:=xfs_check} which mkfs.reiserfs || check_reiserfs=${check_reiserfs:=mkfs.reiserfs} which reiserfsck || check_reiserfs=${check_reiserfs:=reiserfsck} vg_lv="$vg/$lv1" dev_vg_lv="$DM_DEV_DIR/$vg_lv" mount_dir="$TESTDIR/mnt" test ! -d $mount_dir && mkdir $mount_dir cleanup_mounted_and_teardown() { umount $mount_dir || true teardown } fscheck_ext3() { fsck.ext3 -p -F -f $dev_vg_lv } fscheck_xfs() { xfs_check $dev_vg_lv } fscheck_reiserfs() { reiserfsck --check -p -f $dev_vg_lv