Whamcloud - gitweb
LU-2523 tests: disable racer setstripe until fixed
[fs/lustre-release.git] / lustre / tests / racer / file_create.sh
index 828e69c..7de46b6 100755 (executable)
@@ -4,13 +4,15 @@ DIR=$1
 MAX=$2
 MAX_MB=256
 
+# disable until LU-2523 and LU-2789 are fixed
+[ -z "$RACER_SETSTRIPE" ] && RACER_SETSTRIPE=false
 OSTCOUNT=${OSTCOUNT:-$(lfs df $DIR 2> /dev/null | grep -c OST)}
 
 while /bin/true ; do 
        file=$((RANDOM % MAX))
        SIZE=$((RANDOM * MAX_MB / 32))
        echo "file_create: FILE=$DIR/$file SIZE=$SIZE"
-       [ $OSTCOUNT -gt 0 ] &&
+       [ $OSTCOUNT -gt 0 ] && $RACER_SETSTRIPE &&
                lfs setstripe -c $((RANDOM % OSTCOUNT)) $DIR/$file 2> /dev/null
        dd if=/dev/zero of=$DIR/$file bs=1k count=$SIZE 2> /dev/null
 done