From 42177ca5431551432220050b4643707ff10a1065 Mon Sep 17 00:00:00 2001 From: Hongchao Zhang Date: Tue, 1 Nov 2011 13:44:15 +0800 Subject: [PATCH] LU-686 conf-sanity test 52 fails due to missing mount point Create the mount point before mount Change-Id: I6c813f5040e4636386eabb640526f3d1072f484b Signed-off-by: HongChao Zhang Reviewed-on: http://review.whamcloud.com/1379 Reviewed-by: Yu Jian Tested-by: Hudson Tested-by: Maloo Reviewed-by: Oleg Drokin --- lustre/tests/conf-sanity.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index e9193ea..8ca6ef8 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -2454,6 +2454,8 @@ test_52() { [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; } echo mount ost1 as ldiskfs + do_node $ost1node mkdir -p $ost1mnt + [ $? -eq 0 ] || { error "Unable to create $ost1mnt"; return 23; } do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; } -- 1.8.3.1