view tests/clean.sh @ 179:71c24d0df2c4 no-big-mmap

fewer accesses through dataBuf trackSequenceQueryNN() and trackSequenceQueryRad() now use lseek()/read() for getting hold of data, rather than accessing the memory backed by mmap().
author mas01cr
date Thu, 15 Nov 2007 16:22:59 +0000
parents 1853beeb0521
children
line wrap: on
line source
#! /bin/sh

for file in [0-9][0-9][0-9][0-9]*; do
  if [ -d ${file} ]; then
    echo Cleaning ${file}
    rm -f ${file}/test*
    if [ -f ${file}/clean.sh ]; then
      (cd ${file} && sh ./clean.sh)
    fi
  fi
done