view tests/clean.sh @ 445:d1771f436ff7 api-inversion

Better memory discipline Use new rather than malloc()/calloc() for the qpointery bits of memory that audioDB::query_loop ends up calling delete [] on. We're still leaking memory in various places, but at least we're not massively undefined...
author mas01cr
date Wed, 24 Dec 2008 10:56:41 +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