Mercurial > hg > audiodb
view tests/clean.sh @ 187:530154ca4cf5 no-big-mmap
Wow, two changes for the price of one
* remove dataBuf usage from trackPointQuery()
* make the restrict-list tests pass:
** lseek() to the right place if we're actually not doing tracks in
sequential-order;
** deal with the off-by-one error in reading in lines from trackFile.
author | mas01cr |
---|---|
date | Fri, 16 Nov 2007 16:31:36 +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