view tests/clean.sh @ 444:4fe90fd568fc api-inversion

No more audioDB::set_up_query{,_from_key} Go through audiodb_query_spec_qpointers() instead. It's a little bit horrible, but less horrible than two almost-identical separate functions...
author mas01cr
date Wed, 24 Dec 2008 10:56:37 +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