Mercurial > hg > audiodb
view tests/clean.sh @ 543:6afeb2c76957 multiprobeLSH
Fixed non-NULL memory initializaton error. We require NULL fields for correct free() behaviour.
author | mas01mc |
---|---|
date | Sun, 08 Feb 2009 05:06:01 +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