view tests/clean.sh @ 367:3b6cd1dfbddb gcc-4.3-cleanups

deal with the write() calls in implementation of the API, too. (Can't use CHECKED_WRITE() because audioDB::error() is out of scope, so we have to do it the old-fashioned way.)
author mas01cr
date Wed, 12 Nov 2008 15:23:30 +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