• Home
  • Raw
  • Download

Lines Matching refs:echo

9 echo convert fs to 64bit,metadata_csum and revert both changes as one undo file > $OUT
13 echo $CRCSUM before mke2fs $crc0 >> $OUT
32 echo mke2fs -q -F -o Linux -T ext4h -O ^metadata_csum,^64bit -E lazy_itable_init=1 -b 4096 -z $TDB_…
35 echo $CRCSUM after mke2fs $crc1 >> $OUT
37 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64…
38 echo "FS features: ${features}" >> $OUT
39 echo "Should not have 64bit or metadata_csum set" >> $OUT
44 echo using resize2fs to test e2undo >> $OUT
47 echo $CRCSUM after resize2fs $crc2 >> $OUT
49 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64…
50 echo "FS features: ${features}" >> $OUT
51 echo "Should have 64bit but not metadata_csum set" >> $OUT
56 echo using tune2fs to test e2undo >> $OUT
59 echo $CRCSUM after tune2fs $crc3 >> $OUT
61 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -lt 1 ] || [ "$(echo "${features}" | grep 64…
62 echo "FS features: ${features}" >> $OUT
63 echo "Should have 64bit and metadata_csum set" >> $OUT
68 echo using e2fsck to test e2undo >> $OUT
71 echo $CRCSUM after e2fsck $crc4 >> $OUT
73 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -lt 1 ] || [ "$(echo "${features}" | grep 64…
74 echo "FS features: ${features}" >> $OUT
75 echo "Should have 64bit and metadata_csum set" >> $OUT
80 echo roll back e2fsck/tune2fs/resize2fs >> $OUT
83 echo $CRCSUM after e2undo e2fsck/tune2fs/resize2fs $crc1_2 >> $OUT
85 if [ "$(echo "${features}" | grep "metadata_csum" -c)" -gt 0 ] || [ "$(echo "${features}" | grep 64…
86 echo "FS features: ${features}" >> $OUT
87 echo "Should not have 64bit or metadata_csum set" >> $OUT
92 echo roll back mke2fs >> $OUT
95 echo $CRCSUM after e2undo mke2fs $crc0_2 >> $OUT
98 echo "FS features: ${features}" >> $OUT
99 echo "Should not have any features set" >> $OUT
105 echo "$test_name: $test_description: ok"
109 echo "$test_name: $test_description: failed"