Skip to content
Snippets Groups Projects
Commit 04259b8e authored by Bobi Jam's avatar Bobi Jam
Browse files

Branch b1_8_gate

b=16317
i=adilger

conf-sanity test case for verifying that the mounted client data is present.
parent 98712b5c
No related branches found
No related tags found
No related merge requests found
......@@ -1636,5 +1636,22 @@ test_43() { #bug 15993
}
run_test 43 "remove common EA if it exists"
test_44() { # 16317
setup
check_mount || return 2
UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
STATS_FOUND=no
UUIDS=$(do_facet mds "$LCTL get_param mds.${FSNAME}*.exports.*.uuid")
for VAL in $UUIDS; do
NID=$(echo $VAL | cut -d= -f1)
CLUUID=$(echo $VAL | cut -d= -f2)
[ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
done
[ "$STATS_FOUND" = "no" ] && error "stats not found for client"
cleanup
return 0
}
run_test 44 "mounted client proc entry exists"
equals_msg `basename $0`: test complete
[ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG || true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment