1#!/bin/bash 2 3# 4# Copyright (c) International Business Machines Corp., 2005 5# Author: Avantika Mathur (mathurav@us.ibm.com) 6# 7# This library is free software; you can redistribute it and/or 8# modify it under the terms of the GNU Lesser General Public 9# License as published by the Free Software Foundation; either 10# version 2.1 of the License, or (at your option) any later version. 11# 12# This library is distributed in the hope that it will be useful, 13# but WITHOUT ANY WARRANTY; without even the implied warranty of 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15# Lesser General Public License for more details. 16# 17# You should have received a copy of the GNU Lesser General Public 18# License along with this library; if not, write to the Free Software 19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20# 21 22SETS_DEFAULTS="${TCID=test02} ${TST_COUNT=1} ${TST_TOTAL=1}" 23declare -r TCID 24declare -r TST_COUNT 25declare -r TST_TOTAL 26export TCID TST_COUNT TST_TOTAL 27 28tst_resm TINFO "***************TEST02***************" 29tst_resm TINFO "regression: rbind unshared directory to unshare mountpoint." 30tst_resm TINFO "************************************" 31 32. "${FS_BIND_ROOT}/bin/setup" || (tst_resm TWARN "Setup of regression/test02 failed" && tst_exit) 33export result=0 34 35 36 37trap 'ERR=$? ; ERR_MSG="caught error near: ${BASH_SOURCE[0]}:${FUNCNAME[0]}:${LINENO}:$_ (returned ${ERR})"; break' ERR 38 39while /bin/true ; do 40 # This loop is for error recovery purposes only 41 42 43 44 mkdir dir1 45 mkdir dir2 46 mount --bind "$disk1" dir1 47 mount --bind "$disk2" dir1/a 48 mount --rbind dir1 dir2 49 50 check dir1/a dir2/a 51 52 break 53done 54trap 'ERR=$? ; tst_resm TWARN "regression/test02: caught error near: ${BASH_SOURCE[0]}:${FUNCNAME[0]}:${LINENO}:$_ (returned ${ERR})"' ERR 55if [ -n "${ERR_MSG}" ]; then 56 tst_resm TWARN "regression/test02: ${ERR_MSG}" 57 ERR_MSG="" 58 result=$ERR 59fi 60trap '' ERR 61{ 62 umount dir1/a 63 umount dir2/a 64 umount dir2 65 umount dir1 66 67 rm -rf dir* 68 cleanup 69} >& /dev/null 70if [ $result -ne 0 ] 71then 72 tst_resm TFAIL "regression/test02: FAILED: regression: rbind unshared directory to unshare mountpoint." 73 exit 1 74else 75 tst_resm TPASS "regression/test02: PASSED" 76 exit 0 77fi 78tst_exit 79