Whamcloud - gitweb
LU-4351 tests: skip loop test in SLES11 clients
[fs/lustre-release.git] / lustre / tests / sanity.sh
index de5dc50..e8cca24 100644 (file)
@@ -16,6 +16,22 @@ ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCE
 # bug number for skipped tests: LU-2036
 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
 
+is_sles11()                                            # LU-4351
+{
+       if [ -r /etc/SuSE-release ]
+       then
+               local vers=`grep VERSION /etc/SuSE-release | awk '{print $3}'`
+               if [ $vers -eq 11 ]
+               then
+                       return 0
+               fi
+       fi
+       return 1
+}
+
+if is_sles11; then                                     # LU-4351
+       ALWAYS_EXCEPT="$ALWAYS_EXCEPT 54c"
+fi
 
 SRCDIR=$(cd $(dirname $0); echo $PWD)
 export PATH=$PATH:/sbin