From: Tim Shimmin Date: Tue, 19 Mar 2002 04:59:21 +0000 (+0000) Subject: Add more info to 064.full which checks to see that the X-Git-Tag: v1.1.0~1144 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=cadd733b68bf258b1434f36ad8b409cac03679ce;p=xfstests-dev.git Add more info to 064.full which checks to see that the set of files for incremental dumping have been modified like they are supposed to. Added to help in tracking down some sporadic 064 failures. --- diff --git a/064 b/064 index 7a8b3d0d..3ccd159e 100755 --- a/064 +++ b/064 @@ -78,6 +78,16 @@ while [ $i -le 9 ]; do sleep 2 _stable_fs fi + echo "********* level $i ***********" >>$seq.full + date >>$seq.full + find $SCRATCH_MNT -exec stat {} \; >$tmp.dates.$i + if [ $i -gt 0 ]; then + level_1=`expr $i - 1` + diff -c $tmp.dates.$level_1 $tmp.dates.$i >>$seq.full + else + cat $tmp.dates.$i >>$seq.full + fi + dump_file=$tmp.df.level$i _do_dump_file -l $i i=`expr $i + 1`