Whamcloud - gitweb
- added standard CFS headers in some source files.
[fs/lustre-release.git] / lustre / tests / run-llog.sh
index 6a4ffc1..be3449c 100644 (file)
@@ -1,15 +1,23 @@
 #!/bin/bash
 PATH=`dirname $0`:`dirname $0`/../utils:$PATH
 TMP=${TMP:-/tmp}
+
+MDS=`find /proc/fs/lustre/mds/* -type d | head -n1 | sed 's/.*\///'`
+[ -z "$MDS" ] && echo "no MDS available, skipping llog test" && exit 0
+
 insmod ../obdclass/llog_test.o || exit 1
 lctl modules > $TMP/ogdb-`hostname`
+
+# take care of UML developers
+[ -f /r/$TMP/ogdb-`hostname` ] && 
+    cp -f $TMP/ogdb-`hostname` /r/$TMP/ogdb-`hostname`
 echo "NOW reload debugging syms.."
 
 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.