Whamcloud - gitweb
LU-1205 tests: sanityn test_18 sometimes takes long time to run
[fs/lustre-release.git] / lustre / tests / sanityn.sh
index df7e017..dbeba23 100644 (file)
@@ -3,8 +3,8 @@
 set -e
 
 ONLY=${ONLY:-"$*"}
-# bug number for skipped test: 3192 15528/3811 16929 9977 15528/11549 18080
-ALWAYS_EXCEPT="                14b  19         22    28   29          35    $SANITYN_EXCEPT"
+# bug number for skipped test: 3192 LU-1205 15528/3811 16929 9977 15528/11549 18080
+ALWAYS_EXCEPT="                14b  18c     19         22    28   29          35    $SANITYN_EXCEPT"
 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
 
 # bug number for skipped test:        12652 12652
@@ -22,8 +22,6 @@ PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
 
 SIZE=${SIZE:-40960}
 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
-GETSTRIPE=${GETSTRIPE:-lfs getstripe}
-SETSTRIPE=${SETSTRIPE:-lstripe}
 MCREATE=${MCREATE:-mcreate}
 OPENFILE=${OPENFILE:-openfile}
 OPENUNLINK=${OPENUNLINK:-openunlink}
@@ -31,6 +29,7 @@ export TMP=${TMP:-/tmp}
 MOUNT_2=${MOUNT_2:-"yes"}
 CHECK_GRANT=${CHECK_GRANT:-"yes"}
 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
+TSTUSR=${TSTUSR:-"quota_usr"}
 
 SAVE_PWD=$PWD
 
@@ -351,7 +350,17 @@ test_17() { # bug 3513, 3667
 run_test 17 "resource creation/LVB creation race ==============="
 
 test_18() {
-       $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2
+        # turn e.g. ALWAYS_EXCEPT="18c" into "-e 3"
+        local idx
+        local excepts=
+        for idx in {a..z}; do
+                local ptr=EXCEPT_ALWAYS_18$idx
+                [ x${!ptr} = xtrue ] || continue
+
+                excepts="$excepts -e $(($(printf %d \'$idx)-96))"
+        done
+
+       $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 $excepts
        sync; sleep 1; sync
 }
 run_test 18 "mmap sanity check ================================="
@@ -535,8 +544,8 @@ test_28() { # bug 9977
        ECHO_UUID="ECHO_osc1_UUID"
        tOST=`$LCTL dl | | awk '/-osc-|OSC.*MNT/ { print $4 }' | head -1`
 
-       lfs setstripe $DIR1/$tfile -s 1048576 -i 0 -c 2
-       tOBJID=`lfs getstripe $DIR1/$tfile |grep "^[[:space:]]\+1" |awk '{print $2}'`
+       $LFS setstripe $DIR1/$tfile -S 1048576 -i 0 -c 2
+       tOBJID=`$LFS getstripe $DIR1/$tfile | awk '$1 == 1 {print $2}'`
        dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2
 
        $LCTL <<-EOF
@@ -545,7 +554,7 @@ test_28() { # bug 9977
                setup $tOST
        EOF
 
-       tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{print $1}'`
+       tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{ print $1 }'`
        $LCTL --device $tECHOID destroy "${tOBJID}:0"
 
        $LCTL <<-EOF
@@ -1877,6 +1886,53 @@ test_50() {
 }
 run_test 50 "osc lvb attrs: enqueue vs. CP AST =============="
 
+test_60() {
+       # Create a file
+       mkdir -p $DIR1/$tdir
+       file1=$DIR1/$tdir/file
+       file2=$DIR2/$tdir/file
+
+       echo orig > $file2 || error "Could not create $file2"
+       version=$($LFS data_version $file1)
+
+       # Append data
+       echo append >> $file2 || error "Could not append to $file2"
+       version2=$($LFS data_version $file1)
+       [ "$version" != "$version2" ] ||
+           error "append did not change data version: $version"
+
+       # Overwrite data
+       echo overwrite > $file2 || error "Could not overwrite $file2"
+       version3=$($LFS data_version $file1)
+       [ "$version2" != "$version3" ] ||
+           error "overwrite did not change data version: $version2"
+
+       # Truncate before EOF
+       $TRUNCATE $file2 3 || error "Could not truncate $file2"
+       version4=$($LFS data_version $file1)
+       [ "$version3" != "$version4" ] ||
+           error "truncate did not change data version: $version3"
+
+       # Truncate after EOF
+       $TRUNCATE $file2 123456 || error "Could not truncate $file2"
+       version5=$($LFS data_version $file1)
+       [ "$version4" != "$version5" ] ||
+           error "truncate did not change data version: $version4"
+
+       # Chmod do not change version
+       chmod 400 $file2 || error "Could not chmod 400 $file2"
+       version6=$($LFS data_version $file1)
+       [ "$version5" == "$version6" ] ||
+           error "chmod should not change data version: $version5 != $version6"
+
+       # Chown do not change version
+       chown $TSTUSR $file2 || error "Could not chown $TSTUSR $file2"
+       version7=$($LFS data_version $file1)
+       [ "$version5" == "$version7" ] ||
+           error "chown should not change data version: $version5 != $version7"
+}
+run_test 60 "Verify data_version behaviour"
+
 log "cleanup: ======================================================"
 
 [ "$(mount | grep $MOUNT2)" ] && umount $MOUNT2