Home | History | Annotate | Download | only in f_bigalloc_badinode
      1 if ! test -x $DEBUGFS_EXE; then
      2 	echo "$test_name: $test_description: skipped (no debugfs)"
      3 	return 0
      4 fi
      5 
      6 SKIP_GUNZIP="true"
      7 TEST_DATA="$test_name.tmp"
      8 
      9 dd if=$TEST_BITS of=$TEST_DATA bs=4k count=2 seek=1> /dev/null 2>&1
     10 
     11 touch $TMPFILE
     12 $MKE2FS -Fq -t ext4 -O bigalloc -C 16384 $TMPFILE 1M > /dev/null 2>&1
     13 $DEBUGFS -w $TMPFILE << EOF > /dev/null 2>&1
     14 write $TEST_DATA testfile
     15 set_inode_field testfile i_mode 0120000
     16 quit
     17 EOF
     18 
     19 . $cmd_dir/run_e2fsck
     20 
     21 rm -f $TEST_DATA
     22 
     23 unset E2FSCK_TIME TEST_DATA
     24