• Home
  • Raw
  • Download

Lines Matching refs:new

13 echo "debugfs edit extended attributes" > $OUT.new
17 echo "mke2fs -Fq -b 1024 test.img 512" >> $OUT.new
21 echo Exit status is $status >> $OUT.new
23 echo "ea_set / user.joe smith" >> $OUT.new
24 $DEBUGFS -w -R "ea_set / user.joe smith" $TMPFILE >> $OUT.new 2>&1
26 echo Exit status is $status >> $OUT.new
28 echo "ea_set / user.moo FEE_FIE_FOE_FUMMMMMM" >> $OUT.new
29 $DEBUGFS -w -R "ea_set / user.moo FEE_FIE_FOE_FUMMMMMM" $TMPFILE >> $OUT.new 2>&1
31 echo Exit status is $status >> $OUT.new
33 echo "ea_list /" >> $OUT.new
34 $DEBUGFS -w -R "ea_list /" $TMPFILE >> $OUT.new 2>&1
36 echo Exit status is $status >> $OUT.new
38 echo "ea_get / user.moo" >> $OUT.new
39 $DEBUGFS -w -R "ea_get / user.moo" $TMPFILE >> $OUT.new 2>&1
41 echo Exit status is $status >> $OUT.new
43 echo "ea_get / nosuchea" >> $OUT.new
44 $DEBUGFS -w -R "ea_get / nosuchea" $TMPFILE >> $OUT.new 2>&1
46 echo Exit status is $status >> $OUT.new
48 echo "ea_rm / user.moo" >> $OUT.new
49 $DEBUGFS -w -R "ea_rm / user.moo" $TMPFILE >> $OUT.new 2>&1
51 echo Exit status is $status >> $OUT.new
53 echo "ea_rm / nosuchea" >> $OUT.new
54 $DEBUGFS -w -R "ea_rm / nosuchea" $TMPFILE >> $OUT.new 2>&1
56 echo Exit status is $status >> $OUT.new
58 echo "ea_list /" >> $OUT.new
59 $DEBUGFS -w -R "ea_list /" $TMPFILE >> $OUT.new 2>&1
61 echo Exit status is $status >> $OUT.new
63 echo "ea_get / user.moo" >> $OUT.new
64 $DEBUGFS -w -R "ea_get / user.moo" $TMPFILE >> $OUT.new 2>&1
66 echo Exit status is $status >> $OUT.new
68 echo "ea_rm / user.joe" >> $OUT.new
69 $DEBUGFS -w -R "ea_rm / user.joe" $TMPFILE >> $OUT.new 2>&1
71 echo Exit status is $status >> $OUT.new
73 echo "ea_list /" >> $OUT.new
74 $DEBUGFS -w -R "ea_list /" $TMPFILE >> $OUT.new 2>&1
76 echo Exit status is $status >> $OUT.new
79 echo "ea_set -f $TEST_DATA / user.file_based_xattr" >> $OUT.new
80 $DEBUGFS -w -R "ea_set -f $TEST_DATA / user.file_based_xattr" $TMPFILE >> $OUT.new 2>&1
82 echo Exit status is $status >> $OUT.new
84 echo "ea_list /" >> $OUT.new
85 $DEBUGFS -w -R "ea_list /" $TMPFILE >> $OUT.new 2>&1
87 echo Exit status is $status >> $OUT.new
89 echo "ea_get / user.file_based_xattr" >> $OUT.new
90 $DEBUGFS -w -R "ea_get / user.file_based_xattr" $TMPFILE >> $OUT.new 2>&1
92 echo Exit status is $status >> $OUT.new
94 echo "ea_get -f $VERIFY_DATA / user.file_based_xattr" >> $OUT.new
95 $DEBUGFS -w -R "ea_get -f $VERIFY_DATA / user.file_based_xattr" $TMPFILE >> $OUT.new 2>&1
97 echo Exit status is $status >> $OUT.new
99 echo "Compare big attribute" >> $OUT.new
100 diff -u $TEST_DATA $VERIFY_DATA >> $OUT.new
102 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys >> $OUT.new
103 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
105 echo Exit status is $status >> $OUT.new
106 sed -f $cmd_dir/filter.sed $OUT.new > $OUT
112 rm -f $TMPFILE $TEST_DATA $VERIFY_DATA $OUT.new