Skip to content
Snippets Groups Projects
Commit d7e96f45 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Don't fail llog test if no MDS is available on the client.

parent d08374da
No related branches found
No related tags found
No related merge requests found
#!/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.
......
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