54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| FSCK_OPT=-fn
 | |
| OUT=$test_name.log
 | |
| EXP=$test_dir/expect
 | |
| CONF=$TMPFILE.conf
 | |
| 
 | |
| #gzip -d < $EXP.gz > $EXP
 | |
| 
 | |
| cat > $CONF << ENDL
 | |
| [fs_types]
 | |
| 	ext4h = {
 | |
| 		features = has_journal,extent,huge_file,uninit_bg,dir_nlink,extra_isize,sparse_super,filetype,dir_index,ext_attr,^resize_inode,^meta_bg,^flex_bg,64bit
 | |
| 		blocksize = 1024
 | |
| 		inode_size = 256
 | |
| 		make_hugefiles = true
 | |
| 		hugefiles_dir = /
 | |
| 		hugefiles_slack = 12000K
 | |
| 		hugefiles_name = aaaaa
 | |
| 		hugefiles_digits = 4
 | |
| 		hugefiles_size = 117K
 | |
| 		zero_hugefiles = false
 | |
| 	}
 | |
| ENDL
 | |
| 
 | |
| echo "mke2fs -F -T ext4h -I 128 test.img 786432" > $OUT
 | |
| MKE2FS_CONFIG=$CONF $MKE2FS -F -T ext4h -I 128 $TMPFILE 786432 >> $OUT 2>&1
 | |
| rm -f $CONF
 | |
| 
 | |
| # dump and check. if we get this far, we succeeded...
 | |
| $FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1
 | |
| status=$?
 | |
| echo Exit status is $status >> $OUT
 | |
| 
 | |
| rm $TMPFILE
 | |
| 
 | |
| #
 | |
| # Do the verification
 | |
| #
 | |
| 
 | |
| sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" -e 's/test_filesys:.*//g' < $OUT > $OUT.new
 | |
| mv $OUT.new $OUT
 | |
| 
 | |
| cmp -s $OUT $EXP
 | |
| status=$?
 | |
| 
 | |
| if [ "$status" = 0 ] ; then
 | |
| 	echo "$test_name: $test_description: ok"
 | |
| 	touch $test_name.ok
 | |
| else
 | |
| 	echo "$test_name: $test_description: failed"
 | |
| 	diff $DIFF_OPTS $EXP $OUT > $test_name.failed
 | |
| fi
 | |
| 
 | |
| unset IMAGE FSCK_OPT OUT EXP CONF
 |