summaryrefslogtreecommitdiff
path: root/support/dktools/test-rle-rld.sh
blob: 13a21ca244f05df985c67f45b61e4780b8370369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
:
for i in `find . -type f`
do
  echo Checking $i
  CSA=`dkt ls -px $i`
  cat $i | ./test-rle | ./test-rld > ../x.dat
  CSB=`dkt ls -px ../x.dat`
  if [ "X$CSA" != "X$CSB" ]
  then
    echo Difference for $i
  fi
  rm -f ../x.dat
done