Lines Matching refs:tmp
25 grep Committing $LOG | awk '{if ($9 <= vn && $9 > vn_1) print $0}' vn=$vn vn_1=${vn_1} > /tmp/txn.t…
27 for i in `cat /tmp/txn.txt | awk '{print $6}'`; do grep "Commit of $i " $LOG; done > /tmp/names.txt
28 for n in `cat /tmp/names.txt | awk '{print $9}'`; do grep $n $LOG; done > /tmp/changes.txt
30 cat /tmp/changes.txt | grep Insert | awk '{print $12}' | cut -d= -f1 | cut -d+ -f2 | awk '{sum+=$1}…
34 grep "VerifyRead at ${vn_1} (.*): 000${SET}" $LOG | cut -d' ' -f 9- > /tmp/va.txt
35 grep "VerifyRead at ${vn} (.*): 000${SET}" $LOG | cut -d' ' -f 9- > /tmp/vb.txt
39 for l in `cat /tmp/vb.txt`;
41 grep $l /tmp/va.txt > /dev/null ;
47 exp=`grep "\<$k\>" /tmp/changes.txt | tail -1 | cut -d= -f2`;
51 grep "\<$k\>" /tmp/changes.txt
56 for l in `cat /tmp/va.txt`;
59 grep "\<$k\>" /tmp/vb.txt > /dev/null
66 grep Insert /tmp/changes.txt | cut -d' ' -f 10 | sort | uniq > /tmp/keys.txt
67 for k in `cat /tmp/keys.txt`;
69 grep "\<$k\>" /tmp/changes.txt > /tmp/adds.txt;
71 START=`head -1 /tmp/adds.txt | cut -d' ' -f 12 | cut -d+ -f1`
72 END=`tail -1 /tmp/adds.txt | cut -d' ' -f 12 | cut -d= -f2`
73 …ADDS=`cat /tmp/adds.txt | grep Insert | awk '{print $12}' | cut -d= -f1 | cut -d+ -f2 | awk '{sum+…
76 …if [[ $END -ne $EXP ]]; then echo inconsistent txn: $k $START+$ADDS=$END; cat /tmp/adds.txt; retur…