Whamcloud - gitweb
LU-3183 tests: sanity test_27f dd to the wrong file
authorMinh Diep <minh.diep@intel.com>
Wed, 17 Apr 2013 20:56:25 +0000 (13:56 -0700)
committerOleg Drokin <oleg.drokin@intel.com>
Mon, 22 Apr 2013 19:26:55 +0000 (15:26 -0400)
typo in the output file in dd.

Signed-off-by: Minh Diep <minh.diep@intel.com>
Change-Id: I63c5627ed766b92b1446b8f8082017b0e804dbbe
Reviewed-on: http://review.whamcloud.com/6084
Tested-by: Hudson
Tested-by: Maloo <whamcloud.maloo@gmail.com>
Reviewed-by: Jian Yu <jian.yu@intel.com>
Reviewed-by: Bob Glossman <bob.glossman@intel.com>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
lustre/tests/sanity.sh

index 73b7993..a191b71 100644 (file)
@@ -1270,7 +1270,7 @@ run_test 27e "setstripe existing file (should return error) ======"
 test_27f() {
        test_mkdir -p $DIR/d27
        $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
-       dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
+       dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
        $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
 }
 run_test 27f "setstripe with bad stripe size (should return error)"