From: adilger Date: Mon, 26 Jan 2004 06:25:31 +0000 (+0000) Subject: Don't fail llog test if no MDS is available on the client. X-Git-Tag: 1.0.3~12 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=d7e96f45dd6b05b6d597fe89ad9405ecd6a825d2;p=fs%2Flustre-release.git Don't fail llog test if no MDS is available on the client. --- diff --git a/lustre/tests/run-llog.sh b/lustre/tests/run-llog.sh index 6a4ffc1..5d46e2b 100644 --- a/lustre/tests/run-llog.sh +++ b/lustre/tests/run-llog.sh @@ -1,6 +1,10 @@ #!/bin/bash PATH=`dirname $0`:`dirname $0`/../utils:$PATH TMP=${TMP:-/tmp} + +MDS=`ls /proc/fs/lustre/mds | grep -v num_refs | head -1` +[ -z "$MDS" ] && echo "no MDS available, skipping llog test" && exit 0 + insmod ../obdclass/llog_test.o || exit 1 lctl modules > $TMP/ogdb-`hostname` echo "NOW reload debugging syms.." @@ -9,7 +13,7 @@ RC=0 lctl <