From d7e96f45dd6b05b6d597fe89ad9405ecd6a825d2 Mon Sep 17 00:00:00 2001 From: adilger <adilger> Date: Mon, 26 Jan 2004 06:25:31 +0000 Subject: [PATCH] Don't fail llog test if no MDS is available on the client. --- lustre/tests/run-llog.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lustre/tests/run-llog.sh b/lustre/tests/run-llog.sh index 6a4ffc19df..5d46e2b166 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 <<EOT || RC=2 newdev attach llog_test llt_name llt_uuid -setup mds1 +setup $MDS EOT # Using ignore_errors will allow lctl to cleanup even if the test fails. -- GitLab